forked from mirrors/gecko-dev
ContentTask tasks have a different lifetime than SpecialPowers tasks, with the former being tied to the lifetime of a message manager and the latter tied to the lifetime of a window global. That means that existing ContentTask callers which expect to be able to register load listeners before the creation of a window global, or which expect to persist after a page has navigated, won't work as SpecialPowers tasks. Since those sorts of tasks are not really resilient in the face of Fission, they should really be written to work differently, but this patch mostly just reverts them to using ContentTask for the time being. Differential Revision: https://phabricator.services.mozilla.com/D53744 --HG-- extra : moz-landing-system : lando
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
// For bug 773980, test that Components.utils.isDeadWrapper works as expected.
|
|
|
|
add_task(async function test() {
|
|
const url =
|
|
"http://mochi.test:8888/browser/js/xpconnect/tests/browser/browser_deadObjectOnUnload.html";
|
|
let newTab = await BrowserTestUtils.openNewForegroundTab(gBrowser, url);
|
|
let browser = gBrowser.selectedBrowser;
|
|
let innerWindowId = browser.innerWindowID;
|
|
let contentDocDead = await ContentTask.spawn(
|
|
browser,
|
|
{ innerWindowId },
|
|
async function(args) {
|
|
let doc = content.document;
|
|
let { TestUtils } = ChromeUtils.import(
|
|
"resource://testing-common/TestUtils.jsm"
|
|
);
|
|
let promise = TestUtils.topicObserved(
|
|
"inner-window-nuked",
|
|
(subject, data) => {
|
|
let id = subject.QueryInterface(Ci.nsISupportsPRUint64).data;
|
|
return id == args.innerWindowId;
|
|
}
|
|
);
|
|
content.location = "http://mochi.test:8888/";
|
|
await promise;
|
|
return Cu.isDeadWrapper(doc);
|
|
}
|
|
);
|
|
is(contentDocDead, true, "wrapper is dead");
|
|
BrowserTestUtils.removeTab(newTab);
|
|
});
|