diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 06:00:38 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 06:00:38 -0500 |
commit | 8148615da179fdd60f19018e13b4e94b95609cc6 (patch) | |
tree | 771fccdd99fa3adf35fdd2c81d8197b415a89b91 /browser/components/sessionstore/test/browser_replace_load.js | |
parent | 494802c1be7888025b95260d23db187467d2b9dd (diff) | |
download | UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.gz UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.lz UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.xz UXP-8148615da179fdd60f19018e13b4e94b95609cc6.zip |
Remove browser tests - Part 1: The Tests (except for experiments)
Diffstat (limited to 'browser/components/sessionstore/test/browser_replace_load.js')
-rw-r--r-- | browser/components/sessionstore/test/browser_replace_load.js | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/browser/components/sessionstore/test/browser_replace_load.js b/browser/components/sessionstore/test/browser_replace_load.js deleted file mode 100644 index 5464a0874..000000000 --- a/browser/components/sessionstore/test/browser_replace_load.js +++ /dev/null @@ -1,52 +0,0 @@ -"use strict"; - -const STATE = { - entries: [{url: "about:robots"}, {url: "about:mozilla"}], - selected: 2 -}; - -/** - * Bug 1100223. Calling browser.loadURI() while a tab is loading causes - * sessionstore to override the desired target URL. This test ensures that - * calling loadURI() on a pending tab causes the tab to no longer be marked - * as pending and correctly finish the instructed load while keeping the - * restored history around. - */ -add_task(function* () { - yield testSwitchToTab("about:mozilla#fooobar", {ignoreFragment: "whenComparingAndReplace"}); - yield testSwitchToTab("about:mozilla?foo=bar", {replaceQueryString: true}); -}); - -var testSwitchToTab = Task.async(function* (url, options) { - // Create a background tab. - let tab = gBrowser.addTab("about:blank"); - let browser = tab.linkedBrowser; - yield promiseBrowserLoaded(browser); - - // The tab shouldn't be restored right away. - Services.prefs.setBoolPref("browser.sessionstore.restore_on_demand", true); - - // Prepare the tab state. - let promise = promiseTabRestoring(tab); - ss.setTabState(tab, JSON.stringify(STATE)); - ok(tab.hasAttribute("pending"), "tab is pending"); - yield promise; - - // Switch-to-tab with a similar URI. - switchToTabHavingURI(url, false, options); - - // Tab should now restore - yield promiseTabRestored(tab); - is(browser.currentURI.spec, url, "correct URL loaded"); - - // Check that we didn't lose any history entries. - yield ContentTask.spawn(browser, null, function* () { - let Ci = Components.interfaces; - let webNavigation = docShell.QueryInterface(Ci.nsIWebNavigation); - let history = webNavigation.sessionHistory.QueryInterface(Ci.nsISHistoryInternal); - Assert.equal(history && history.count, 3, "three history entries"); - }); - - // Cleanup. - gBrowser.removeTab(tab); -}); |