summaryrefslogtreecommitdiffstats
path: root/docshell/test/browser/browser_bug1622420.js
blob: df15eba5832e7cbb97e046e80b36533f94160c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const ACTOR = "Bug1622420";

add_task(async function test() {
  let base = getRootDirectory(gTestPath).slice(0, -1);
  ChromeUtils.registerWindowActor(ACTOR, {
    allFrames: true,
    child: {
      moduleURI: `${base}/Bug1622420Child.jsm`,
    },
  });

  registerCleanupFunction(async () => {
    gBrowser.removeTab(tab);

    ChromeUtils.unregisterWindowActor(ACTOR);
  });

  let tab = await BrowserTestUtils.openNewForegroundTab(
    gBrowser,
    "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"
  );
});