forked from mirrors/gecko-dev
This adds an additional action that is triggered when the fullscreen transition event is received. That interim action is used to re-focus the original tab. Without this change, an asynchronous fullscreen transition will silently swallow the MozAfterPaint event that is necessary to detect the end of fullscreen. Before this change, with asynchronous transitions, here's the flow: 1) The test opens Tab 1 which opens Tab 2. 2) Tab 1 enters fullscreen. This transition takes awhile but signals success early. This is intentional because we want web content to be able to be fully layed out when the fullscreen transition is complete. 3) Thinking that it has reached fullscreen, the test focuses Tab 2, which causes a fullscreen exit transition to be queued up but not yet run. Then Tab 1 is unfocused and a MozAfterPaint message is sent, but nobody is listening for it so it has no effect. If the fullscreen transition was synchronous, the actions of Step 6 (below) would happen before the change in focus and there would be an event listener ready for the MozAfterPaint event. 4) The test waits for the DOMFullscreenChild to send the DOMFullscreen:Painted message, which it will do when it receives a MozAfterPaint event. 5) Enter fullscreen transition completes, exit fullscreen transition starts. 6) The MozDOMFullscreen:Exited event is sent to the DOMFullscreenChild, which starts listening for the MozAfterPaint event. This event has already been sent. 7) Test times out. This change adds an additional action to take place between steps 6 and 7. That additional action refocuses Tab 1. This makes it send another MozAfterPaint event which the DOMFullscreenChild is ready to receive. Differential Revision: https://phabricator.services.mozilla.com/D180884 |
||
|---|---|---|
| .. | ||
| browser.ini | ||
| browser_bug1557041.js | ||
| browser_bug1620341.js | ||
| browser_fullscreen_api_fission.js | ||
| browser_fullscreen_context_menu.js | ||
| browser_fullscreen_cross_origin.js | ||
| browser_fullscreen_enterInUrlbar.js | ||
| browser_fullscreen_from_minimize.js | ||
| browser_fullscreen_keydown_reservation.js | ||
| browser_fullscreen_menus.js | ||
| browser_fullscreen_newtab.js | ||
| browser_fullscreen_newwindow.js | ||
| browser_fullscreen_permissions_prompt.js | ||
| browser_fullscreen_warning.js | ||
| browser_fullscreen_window_focus.js | ||
| browser_fullscreen_window_open.js | ||
| fullscreen.html | ||
| fullscreen_frame.html | ||
| FullscreenFrame.sys.mjs | ||
| head.js | ||
| open_and_focus_helper.html | ||