You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FAIL A view transition should be immediately skipped if started when document is hidden assert_unreached: Should have rejected: undefined Reached unreachable code
3
-
FAIL A view transition should be skipped when a document becomes hidden while processing update callback assert_equals: expected "rejected" but got "fulfilled"
4
-
FAIL A view transition should be skipped when a document becomes hidden while animating assert_equals: expected "finished" but got "timeout"
2
+
PASS A view transition should be immediately skipped if started when document is hidden
3
+
PASS A view transition should be skipped when a document becomes hidden while processing update callback
4
+
PASS A view transition should be skipped when a document becomes hidden while animating
Copy file name to clipboardExpand all lines: LayoutTests/imported/w3c/web-platform-tests/css/css-view-transitions/window-resize-aborts-transition-before-ready.html
viewTransition->skipViewTransition(Exception { ExceptionCode::InvalidStateError, "View transition was skipped because document visibility state is hidden."_s });
10858
+
return viewTransition;
10859
+
}
10860
+
10854
10861
if (RefPtr activeViewTransition = m_activeViewTransition)
10855
10862
activeViewTransition->skipViewTransition(Exception { ExceptionCode::AbortError, "Old view transition aborted by new view transition."_s });
0 commit comments