fune/testing/mochitest/tests/browser/browser_waitForFocus.js
Cristina Horotan 5f4356e527 Backed out 9 changesets (bug 1810141) for several test failures on a CLOSED TREE
Backed out changeset 8781a0d1254d (bug 1810141)
Backed out changeset 131037295784 (bug 1810141)
Backed out changeset 3852fbe290f4 (bug 1810141)
Backed out changeset 118f131a524a (bug 1810141)
Backed out changeset ab5d76846e10 (bug 1810141)
Backed out changeset dce3aa683445 (bug 1810141)
Backed out changeset 4dc41d90dbb3 (bug 1810141)
Backed out changeset 50b57ba1a061 (bug 1810141)
Backed out changeset 569de94781e4 (bug 1810141)
2023-02-13 16:05:30 +02:00

160 lines
4 KiB
JavaScript

const gBaseURL = "https://example.com/browser/testing/mochitest/tests/browser/";
function promiseTabLoadEvent(tab, url) {
let promise = BrowserTestUtils.browserLoaded(tab.linkedBrowser, false, url);
if (url) {
tab.linkedBrowser.loadURI(url);
}
return promise;
}
// Load a new blank tab
add_task(async function() {
await BrowserTestUtils.openNewForegroundTab(gBrowser);
gURLBar.focus();
let browser = gBrowser.selectedBrowser;
await SimpleTest.promiseFocus(browser, true);
is(
document.activeElement,
browser,
"Browser is focused when about:blank is loaded"
);
gBrowser.removeCurrentTab();
gURLBar.focus();
});
add_task(async function() {
await BrowserTestUtils.openNewForegroundTab(gBrowser);
gURLBar.focus();
let browser = gBrowser.selectedBrowser;
// If we're running in e10s, we don't have access to the content
// window, so only test window arguments in non-e10s mode.
if (browser.contentWindow) {
await SimpleTest.promiseFocus(browser.contentWindow, true);
is(
document.activeElement,
browser,
"Browser is focused when about:blank is loaded"
);
}
gBrowser.removeCurrentTab();
gURLBar.focus();
});
// Load a tab with a subframe inside it and wait until the subframe is focused
add_task(async function() {
let tab = BrowserTestUtils.addTab(gBrowser);
gBrowser.selectedTab = tab;
let browser = gBrowser.getBrowserForTab(tab);
// If we're running in e10s, we don't have access to the content
// window, so only test <iframe> arguments in non-e10s mode.
if (browser.contentWindow) {
await promiseTabLoadEvent(tab, gBaseURL + "waitForFocusPage.html");
await SimpleTest.promiseFocus(browser.contentWindow);
is(
document.activeElement,
browser,
"Browser is focused when page is loaded"
);
await SimpleTest.promiseFocus(browser.contentWindow.frames[0]);
is(
browser.contentWindow.document.activeElement.localName,
"iframe",
"Child iframe is focused"
);
}
gBrowser.removeCurrentTab();
});
// Pass a browser to promiseFocus
add_task(async function() {
await BrowserTestUtils.openNewForegroundTab(
gBrowser,
gBaseURL + "waitForFocusPage.html"
);
gURLBar.focus();
await SimpleTest.promiseFocus(gBrowser.selectedBrowser);
is(
document.activeElement,
gBrowser.selectedBrowser,
"Browser is focused when promiseFocus is passed a browser"
);
gBrowser.removeCurrentTab();
});
// Tests focusing the sidebar, which is in a parent process subframe
// and then switching the focus to another window.
add_task(async function() {
await SidebarUI.show("viewBookmarksSidebar");
gURLBar.focus();
// Focus the sidebar.
await SimpleTest.promiseFocus(SidebarUI.browser);
is(
document.activeElement,
document.getElementById("sidebar"),
"sidebar focused"
);
ok(
document.activeElement.contentDocument.hasFocus(),
"sidebar document hasFocus"
);
// Focus the sidebar again, which should cause no change.
await SimpleTest.promiseFocus(SidebarUI.browser);
is(
document.activeElement,
document.getElementById("sidebar"),
"sidebar focused"
);
ok(
document.activeElement.contentDocument.hasFocus(),
"sidebar document hasFocus"
);
// Focus another window. The sidebar should no longer be focused.
let window2 = await BrowserTestUtils.openNewBrowserWindow();
is(
document.activeElement,
document.getElementById("sidebar"),
"sidebar focused after window 2 opened"
);
ok(
!document.activeElement.contentDocument.hasFocus(),
"sidebar document hasFocus after window 2 opened"
);
// Focus the first window again and the sidebar should be focused again.
await SimpleTest.promiseFocus(window);
is(
document.activeElement,
document.getElementById("sidebar"),
"sidebar focused after window1 refocused"
);
ok(
document.activeElement.contentDocument.hasFocus(),
"sidebar document hasFocus after window1 refocused"
);
await BrowserTestUtils.closeWindow(window2);
await SidebarUI.hide();
});