summaryrefslogtreecommitdiffstats
path: root/toolkit/components/webextensions/test/mochitest/test_ext_contentscript_context.html
blob: 97b1645dd2eb02dba5643aaa824a5f1a35bb137d (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for content script contexts</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/SpawnTask.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
  <script type="text/javascript" src="head.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>

<script type="text/javascript">
"use strict";

/* eslint-disable mozilla/balanced-listeners */

add_task(function* test_contentscript_context() {
  function contentScript() {
    browser.test.sendMessage("content-script-ready");

    window.addEventListener("pagehide", () => {
      browser.test.sendMessage("content-script-hide");
    }, true);
    window.addEventListener("pageshow", () => {
      browser.test.sendMessage("content-script-show");
    });
  }

  let extension = ExtensionTestUtils.loadExtension({
    manifest: {
      content_scripts: [{
        "matches": ["http://example.com/"],
        "js": ["content_script.js"],
        "run_at": "document_start",
      }],
    },

    files: {
      "content_script.js": contentScript,
    },
  });

  yield extension.startup();

  let win = window.open("http://example.com/");
  yield extension.awaitMessage("content-script-ready");
  yield extension.awaitMessage("content-script-show");

  // Get the content script context and check that it points to the correct window.

  let {DocumentManager} = SpecialPowers.Cu.import("resource://gre/modules/ExtensionContent.jsm", {});
  let context = DocumentManager.getContentScriptContext(extension, win);
  ok(context != null, "Got content script context");

  is(SpecialPowers.unwrap(context.contentWindow), win, "Context's contentWindow property is correct");

  // Navigate so that the content page is hidden in the bfcache.

  win.location = "http://example.org/";
  yield extension.awaitMessage("content-script-hide");

  is(context.contentWindow, null, "Context's contentWindow property is null");

  // Navigate back so the content page is resurrected from the bfcache.

  SpecialPowers.wrap(win).history.back();
  yield extension.awaitMessage("content-script-show");

  is(SpecialPowers.unwrap(context.contentWindow), win, "Context's contentWindow property is correct");

  win.close();

  yield extension.awaitMessage("content-script-hide");

  yield extension.unload();
});
</script>

</body>
</html>