forked from mirrors/gecko-dev
Running eslint with --fix didn't fix many of the issues. The majority here had to be fixed by hand but a significant majority of the issues were related to a few files that I was able to use find-and-replace with. I regret not making this in to separate commits of the hand-fixes and the fixes from --fix but I don't recall --fix fixing any of the issues. MozReview-Commit-ID: ANyg2qfo3Qx --HG-- extra : rebase_source : 61d2aa91bf9474af3d72a5dea41b25dca442c1b7
124 lines
4.6 KiB
JavaScript
124 lines
4.6 KiB
JavaScript
// This file spawns content tasks.
|
|
/* eslint-env mozilla/frame-script */
|
|
|
|
"use strict";
|
|
|
|
requestLongerTimeout(2);
|
|
|
|
add_task(function* setup() {
|
|
yield SpecialPowers.pushPrefEnv({
|
|
set: [["dom.ipc.processCount", 1]]
|
|
});
|
|
});
|
|
|
|
add_task(function* () {
|
|
let win = yield BrowserTestUtils.openNewBrowserWindow();
|
|
|
|
// Create 4 tabs with different userContextId.
|
|
for (let userContextId = 1; userContextId < 5; userContextId++) {
|
|
let tab = win.gBrowser.addTab("http://example.com/", {userContextId});
|
|
yield promiseBrowserLoaded(tab.linkedBrowser);
|
|
yield TabStateFlusher.flush(tab.linkedBrowser);
|
|
}
|
|
|
|
// Move the default tab of window to the end.
|
|
// We want the 1st tab to have non-default userContextId, so later when we
|
|
// restore into win2 we can test restore into an existing tab with different
|
|
// userContextId.
|
|
win.gBrowser.moveTabTo(win.gBrowser.tabs[0], win.gBrowser.tabs.length - 1);
|
|
|
|
let winState = JSON.parse(ss.getWindowState(win));
|
|
|
|
for (let i = 0; i < 4; i++) {
|
|
Assert.equal(winState.windows[0].tabs[i].userContextId, i + 1,
|
|
"1st Window: tabs[" + i + "].userContextId should exist.");
|
|
}
|
|
|
|
let win2 = yield BrowserTestUtils.openNewBrowserWindow();
|
|
|
|
// Create tabs with different userContextId, but this time we create them with
|
|
// fewer tabs and with different order with win.
|
|
for (let userContextId = 3; userContextId > 0; userContextId--) {
|
|
let tab = win2.gBrowser.addTab("http://example.com/", {userContextId});
|
|
yield promiseBrowserLoaded(tab.linkedBrowser);
|
|
yield TabStateFlusher.flush(tab.linkedBrowser);
|
|
}
|
|
|
|
ss.setWindowState(win2, JSON.stringify(winState), true);
|
|
|
|
for (let i = 0; i < 4; i++) {
|
|
let browser = win2.gBrowser.tabs[i].linkedBrowser;
|
|
yield ContentTask.spawn(browser, { expectedId: i + 1 }, function* (args) {
|
|
Assert.equal(docShell.getOriginAttributes().userContextId,
|
|
args.expectedId,
|
|
"The docShell has the correct userContextId");
|
|
|
|
Assert.equal(content.document.nodePrincipal.originAttributes.userContextId,
|
|
args.expectedId,
|
|
"The document has the correct userContextId");
|
|
});
|
|
}
|
|
|
|
// Test the last tab, which doesn't have userContextId.
|
|
let browser = win2.gBrowser.tabs[4].linkedBrowser;
|
|
yield ContentTask.spawn(browser, { expectedId: 0 }, function* (args) {
|
|
Assert.equal(docShell.getOriginAttributes().userContextId,
|
|
args.expectedId,
|
|
"The docShell has the correct userContextId");
|
|
|
|
Assert.equal(content.document.nodePrincipal.originAttributes.userContextId,
|
|
args.expectedId,
|
|
"The document has the correct userContextId");
|
|
});
|
|
|
|
yield BrowserTestUtils.closeWindow(win);
|
|
yield BrowserTestUtils.closeWindow(win2);
|
|
});
|
|
|
|
add_task(function* () {
|
|
let win = yield BrowserTestUtils.openNewBrowserWindow();
|
|
yield TabStateFlusher.flush(win.gBrowser.selectedBrowser);
|
|
|
|
let tab = win.gBrowser.addTab("http://example.com/", { userContextId: 1 });
|
|
yield promiseBrowserLoaded(tab.linkedBrowser);
|
|
yield TabStateFlusher.flush(tab.linkedBrowser);
|
|
|
|
// win should have 1 default tab, and 1 container tab.
|
|
Assert.equal(win.gBrowser.tabs.length, 2, "win should have 2 tabs");
|
|
|
|
let winState = JSON.parse(ss.getWindowState(win));
|
|
|
|
for (let i = 0; i < 2; i++) {
|
|
Assert.equal(winState.windows[0].tabs[i].userContextId, i,
|
|
"1st Window: tabs[" + i + "].userContextId should be " + i);
|
|
}
|
|
|
|
let win2 = yield BrowserTestUtils.openNewBrowserWindow();
|
|
|
|
let tab2 = win2.gBrowser.addTab("http://example.com/", { userContextId: 1 });
|
|
yield promiseBrowserLoaded(tab2.linkedBrowser);
|
|
yield TabStateFlusher.flush(tab2.linkedBrowser);
|
|
|
|
// Move the first normal tab to end, so the first tab of win2 will be a
|
|
// container tab.
|
|
win2.gBrowser.moveTabTo(win2.gBrowser.tabs[0], win2.gBrowser.tabs.length - 1);
|
|
yield TabStateFlusher.flush(win2.gBrowser.tabs[0].linkedBrowser);
|
|
|
|
ss.setWindowState(win2, JSON.stringify(winState), true);
|
|
|
|
for (let i = 0; i < 2; i++) {
|
|
let browser = win2.gBrowser.tabs[i].linkedBrowser;
|
|
yield ContentTask.spawn(browser, { expectedId: i }, function* (args) {
|
|
Assert.equal(docShell.getOriginAttributes().userContextId,
|
|
args.expectedId,
|
|
"The docShell has the correct userContextId");
|
|
|
|
Assert.equal(content.document.nodePrincipal.originAttributes.userContextId,
|
|
args.expectedId,
|
|
"The document has the correct userContextId");
|
|
});
|
|
}
|
|
|
|
yield BrowserTestUtils.closeWindow(win);
|
|
yield BrowserTestUtils.closeWindow(win2);
|
|
});
|