Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: os == 'win' && os_version == '11.26200' && asan
- This test failed 4 times in the preceding 30 days. quicksearch this test
- Manifest: dom/base/test/browser.toml
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
const BASE_URL = "http://mochi.test:8888/browser/dom/base/test/";
add_task(async function bug1703472() {
await SpecialPowers.pushPrefEnv({
set: [
["test.wait300msAfterTabSwitch", true],
// Enable the popup blocker
["dom.disable_open_during_load", true],
],
});
await BrowserTestUtils.withNewTab(
BASE_URL + "file_bug1703472.html",
async function (browser) {
info("Opening about:blank popup");
let win = await newFocusedWindow(function () {
return BrowserTestUtils.synthesizeMouseAtCenter(
"#openWindow",
{},
browser
);
}, true);
is(Services.focus.focusedWindow, win, "New window should be focused");
info("re-focusing the original window");
{
let focusBack = BrowserTestUtils.waitForEvent(window, "focus", true);
window.focus();
await focusBack;
is(Services.focus.focusedWindow, window, "should focus back");
}
// The click to do window.open() should've consumed the user interaction,
// and an artificial .click() shouldn't count as a user interaction, so the
// page shouldn't be allowed to focus it again without user interaction.
info("Trying to steal focus without interaction");
await SpecialPowers.spawn(browser, [], function () {
content.document.querySelector("#focusWindow").click();
});
// We need to wait for something _not_ happening, so we need to use an arbitrary setTimeout.
await new Promise(resolve => {
// eslint-disable-next-line mozilla/no-arbitrary-setTimeout
setTimeout(resolve, 500);
});
is(Services.focus.focusedWindow, window, "should still be focused");
info("Trying to move focus with user interaction");
{
let focus = BrowserTestUtils.waitForEvent(win, "focus", true);
await BrowserTestUtils.synthesizeMouseAtCenter(
"#focusWindow",
{},
browser
);
await focus;
is(Services.focus.focusedWindow, win, "should focus back");
}
win.close();
}
);
});