diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /browser/base/content/test/general/browser_bug495058.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/base/content/test/general/browser_bug495058.js')
-rw-r--r-- | browser/base/content/test/general/browser_bug495058.js | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/browser/base/content/test/general/browser_bug495058.js b/browser/base/content/test/general/browser_bug495058.js new file mode 100644 index 0000000000..95a444bf6a --- /dev/null +++ b/browser/base/content/test/general/browser_bug495058.js @@ -0,0 +1,53 @@ +/** + * Tests that the right elements of a tab are focused when it is + * torn out into its own window. + */ + +const URIS = [ + "about:blank", + "about:home", + "about:sessionrestore", + "about:privatebrowsing", +]; + +add_task(async function () { + for (let uri of URIS) { + let tab = BrowserTestUtils.addTab(gBrowser); + BrowserTestUtils.loadURIString(tab.linkedBrowser, uri); + await BrowserTestUtils.browserLoaded(tab.linkedBrowser); + let isRemote = tab.linkedBrowser.isRemoteBrowser; + + let win = gBrowser.replaceTabWithWindow(tab); + + await TestUtils.topicObserved( + "browser-delayed-startup-finished", + subject => subject == win + ); + // In the e10s case, we wait for the content to first paint before we focus + // the URL in the new window, to optimize for content paint time. + if (isRemote) { + await win.gBrowserInit.firstContentWindowPaintPromise; + } + + tab = win.gBrowser.selectedTab; + + Assert.equal( + win.gBrowser.currentURI.spec, + uri, + uri + ": uri loaded in detached tab" + ); + + const expectedActiveElement = tab.isEmpty + ? win.gURLBar.inputField + : win.gBrowser.selectedBrowser; + Assert.equal( + win.document.activeElement, + expectedActiveElement, + `${uri}: the active element is expected: ${win.document.activeElement?.nodeName}` + ); + Assert.equal(win.gURLBar.value, "", uri + ": urlbar is empty"); + Assert.ok(win.gURLBar.placeholder, uri + ": placeholder text is present"); + + await BrowserTestUtils.closeWindow(win); + } +}); |