mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
8a1555ed30
--HG-- extra : commitid : yjJoUlqkYf
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
"use strict";
|
|
|
|
const URL = "http://example.com/browser_switch_remoteness_";
|
|
|
|
function countHistoryEntries(browser) {
|
|
return ContentTask.spawn(browser, null, function* () {
|
|
let Ci = Components.interfaces;
|
|
let webNavigation = docShell.QueryInterface(Ci.nsIWebNavigation);
|
|
let history = webNavigation.sessionHistory.QueryInterface(Ci.nsISHistoryInternal);
|
|
return history && history.count;
|
|
});
|
|
}
|
|
|
|
add_task(function* () {
|
|
// Add a new tab.
|
|
let tab = gBrowser.addTab("about:blank");
|
|
let browser = tab.linkedBrowser;
|
|
yield promiseBrowserLoaded(browser);
|
|
ok(browser.isRemoteBrowser, "browser is remote");
|
|
|
|
// Get the maximum number of preceding entries to save.
|
|
const MAX_BACK = Services.prefs.getIntPref("browser.sessionstore.max_serialize_back");
|
|
ok(MAX_BACK > -1, "check that the default has a value that caps data");
|
|
|
|
// Load more pages than we would save to disk on a clean shutdown.
|
|
for (let i = 0; i < MAX_BACK + 2; i++) {
|
|
browser.loadURI(URL + i);
|
|
yield promiseBrowserLoaded(browser);
|
|
ok(browser.isRemoteBrowser, "browser is still remote");
|
|
}
|
|
|
|
// Check we have the right number of shistory entries.
|
|
let count = yield countHistoryEntries(browser);
|
|
is(count, MAX_BACK + 2, "correct number of shistory entries");
|
|
|
|
// Load a non-remote page.
|
|
browser.loadURI("about:robots");
|
|
yield promiseTabRestored(tab);
|
|
ok(!browser.isRemoteBrowser, "browser is not remote anymore");
|
|
|
|
// Check that we didn't lose any shistory entries.
|
|
count = yield countHistoryEntries(browser);
|
|
is(count, MAX_BACK + 3, "correct number of shistory entries");
|
|
|
|
// Cleanup.
|
|
gBrowser.removeTab(tab);
|
|
});
|