fune/browser/components/sessionstore/test/browser_739805.js
Kris Maglione 94e3b0bd8d Bug 1596918: Part 3a - Scripted rewrite of most ContentTask.spawn calls to SpecialPowers.spawn calls. r=mccr8,remote-protocol-reviewers,ato
This is generally pretty straightforward, and rewrites nearly all calls. It
skips the ones that it can detect using frame script globals like
`sendAsyncMessage`, though.

Differential Revision: https://phabricator.services.mozilla.com/D53740

--HG--
extra : moz-landing-system : lando
2019-12-13 20:36:16 +00:00

49 lines
1.5 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
var url = "data:text/html;charset=utf-8,<input%20id='foo'>";
var tabState = {
entries: [{ url, triggeringPrincipal_base64 }],
formdata: { id: { foo: "bar" }, url },
};
function test() {
waitForExplicitFinish();
Services.prefs.setBoolPref("browser.sessionstore.restore_on_demand", true);
registerCleanupFunction(function() {
if (gBrowser.tabs.length > 1) {
gBrowser.removeTab(gBrowser.tabs[1]);
}
Services.prefs.clearUserPref("browser.sessionstore.restore_on_demand");
});
let tab = BrowserTestUtils.addTab(gBrowser, "about:blank");
let browser = tab.linkedBrowser;
promiseBrowserLoaded(browser).then(() => {
isnot(gBrowser.selectedTab, tab, "newly created tab is not selected");
ss.setTabState(tab, JSON.stringify(tabState));
is(
ss.getInternalObjectState(browser),
TAB_STATE_NEEDS_RESTORE,
"tab needs restoring"
);
let { formdata } = JSON.parse(ss.getTabState(tab));
is(formdata && formdata.id.foo, "bar", "tab state's formdata is valid");
promiseTabRestored(tab).then(() => {
SpecialPowers.spawn(browser, [], function() {
let input = content.document.getElementById("foo");
is(input.value, "bar", "formdata has been restored correctly");
}).then(() => {
finish();
});
});
// Restore the tab by selecting it.
gBrowser.selectedTab = tab;
});
}