1
0
Fork 0
firefox/docshell/test/browser/browser_bug1622420.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

31 lines
910 B
JavaScript

const ACTOR = "Bug1622420";
add_task(async function test() {
let base = getRootDirectory(gTestPath).slice(0, -1);
ChromeUtils.registerWindowActor(ACTOR, {
allFrames: true,
child: {
esModuleURI: `${base}/Bug1622420Child.sys.mjs`,
},
});
registerCleanupFunction(async () => {
gBrowser.removeTab(tab);
ChromeUtils.unregisterWindowActor(ACTOR);
});
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
"http://example.org/browser/docshell/test/browser/file_bug1622420.html"
);
let childBC = tab.linkedBrowser.browsingContext.children[0];
let success = await childBC.currentWindowGlobal
.getActor(ACTOR)
.sendQuery("hasWindowContextForTopBC");
ok(
success,
"Should have a WindowContext for the top BrowsingContext in the process of a child BrowsingContext"
);
});