summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/xpcshell/test_ext_contentscript_xorigin_frame.js
blob: 8a58b2475c68c8d29fa0ad6f0c5d0aafb6af2996 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"use strict";

const server = createHttpServer({
  hosts: ["example.net", "example.org"],
});
server.registerDirectory("/data/", do_get_file("data"));

add_task(async function test_process_switch_cross_origin_frame() {
  const extension = ExtensionTestUtils.loadExtension({
    manifest: {
      content_scripts: [
        {
          matches: ["http://example.org/*/file_iframe.html"],
          all_frames: true,
          js: ["cs.js"],
        },
      ],
    },

    files: {
      "cs.js"() {
        browser.test.assertEq(
          location.href,
          "http://example.org/data/file_iframe.html",
          "url is ok"
        );

        // frameId is the BrowsingContext ID in practice.
        let frameId = browser.runtime.getFrameId(window);
        browser.test.sendMessage("content-script-loaded", frameId);
      },
    },
  });

  await extension.startup();

  const contentPage = await ExtensionTestUtils.loadContentPage(
    "http://example.net/data/file_with_xorigin_frame.html"
  );

  const browserProcessId =
    contentPage.browser.browsingContext.currentWindowGlobal.domProcess.childID;

  const scriptFrameId = await extension.awaitMessage("content-script-loaded");

  const children = contentPage.browser.browsingContext.children.map(bc => ({
    browsingContextId: bc.id,
    processId: bc.currentWindowGlobal.domProcess.childID,
  }));

  Assert.equal(children.length, 1);
  Assert.equal(scriptFrameId, children[0].browsingContextId);

  if (contentPage.remoteSubframes) {
    Assert.notEqual(browserProcessId, children[0].processId);
  } else {
    Assert.equal(browserProcessId, children[0].processId);
  }

  await contentPage.close();
  await extension.unload();
});