diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /browser/base/content/test/general/browser_bug623893.js | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/base/content/test/general/browser_bug623893.js')
-rw-r--r-- | browser/base/content/test/general/browser_bug623893.js | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/browser/base/content/test/general/browser_bug623893.js b/browser/base/content/test/general/browser_bug623893.js new file mode 100644 index 0000000000..1a45c5839d --- /dev/null +++ b/browser/base/content/test/general/browser_bug623893.js @@ -0,0 +1,44 @@ +add_task(async function test() { + await BrowserTestUtils.withNewTab( + "data:text/plain;charset=utf-8,1", + async function(browser) { + BrowserTestUtils.loadURI(browser, "data:text/plain;charset=utf-8,2"); + await BrowserTestUtils.browserLoaded(browser); + + BrowserTestUtils.loadURI(browser, "data:text/plain;charset=utf-8,3"); + await BrowserTestUtils.browserLoaded(browser); + + await duplicate(0, "maintained the original index"); + BrowserTestUtils.removeTab(gBrowser.selectedTab); + + await duplicate(-1, "went back"); + await duplicate(1, "went forward"); + BrowserTestUtils.removeTab(gBrowser.selectedTab); + BrowserTestUtils.removeTab(gBrowser.selectedTab); + } + ); +}); + +async function promiseGetIndex(browser) { + if (!SpecialPowers.Services.appinfo.sessionHistoryInParent) { + return SpecialPowers.spawn(browser, [], function() { + let shistory = + docShell.browsingContext.childSessionHistory.legacySHistory; + return shistory.index; + }); + } + + let shistory = browser.browsingContext.sessionHistory; + return shistory.index; +} + +let duplicate = async function(delta, msg, cb) { + var startIndex = await promiseGetIndex(gBrowser.selectedBrowser); + + duplicateTabIn(gBrowser.selectedTab, "tab", delta); + + await BrowserTestUtils.waitForEvent(gBrowser.tabContainer, "SSTabRestored"); + + let endIndex = await promiseGetIndex(gBrowser.selectedBrowser); + is(endIndex, startIndex + delta, msg); +}; |