summaryrefslogtreecommitdiffstats
path: root/dom/events/test/browser_keyboard_event_init_key_event_enabled_in_contentscript.js
blob: e8d51edb3e484ed056cddfce25338221cb1effba (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

async function installAndStartExtension() {
  function contentScript() {
    window.addEventListener(
      "load",
      () => {
        document.documentElement.setAttribute(
          "data-initKeyEvent-in-contentscript",
          typeof window.KeyboardEvent.prototype.initKeyEvent
        );
      },
      { capture: true, once: true }
    );
  }

  let extension = ExtensionTestUtils.loadExtension({
    manifest: {
      content_scripts: [
        {
          js: ["content_script.js"],
          matches: ["<all_urls>"],
          run_at: "document_start",
        },
      ],
    },
    files: {
      "content_script.js": contentScript,
    },
  });

  await extension.startup();

  return extension;
}

add_task(async function () {
  await SpecialPowers.pushPrefEnv({
    set: [
      ["dom.keyboardevent.init_key_event.enabled", false],
      ["dom.keyboardevent.init_key_event.enabled_in_addons", true],
    ],
  });

  const extension = await installAndStartExtension();
  await BrowserTestUtils.withNewTab(
    "http://example.com/browser/dom/events/test/file_keyboard_event_init_key_event_enabled_in_contentscript.html",
    async browser => {
      info("Waiting for the test result...");
      await SpecialPowers.spawn(browser, [], () => {
        Assert.equal(
          content.document.documentElement.getAttribute(
            "data-initKeyEvent-before"
          ),
          "undefined",
          "KeyboardEvent.initKeyEvent shouldn't be available in web-content"
        );
        Assert.equal(
          content.document.documentElement.getAttribute(
            "data-initKeyEvent-in-contentscript"
          ),
          "function",
          "KeyboardEvent.initKeyEvent should be available in contentscript"
        );
        Assert.equal(
          content.document.documentElement.getAttribute(
            "data-initKeyEvent-after"
          ),
          "undefined",
          "KeyboardEvent.initKeyEvent shouldn't be available in web-content even after contentscript accesses it"
        );
      });
    }
  );

  await extension.unload();
});