summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/mochitest/test_ext_browserAction_openPopup_without_pref.html
blob: aa7285d5f537adaf05b6e504a70e047a6ed6e1cd (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
<!DOCTYPE HTML>
<html>
<head>
  <title>action.openPopup Preference Test</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
  <script type="text/javascript" src="head.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
</head>
<body>

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

let extensionData = {
  manifest: {
    browser_specific_settings: {
      gecko: {
        id: "open-popup@tests.mozilla.org",
      }
    },
    browser_action: {
      default_popup: "popup.html",
    }
  },

  useAddonManager: "android-only",
};

add_task(async function test_browserAction_openPopup_without_pref() {
  await SpecialPowers.pushPrefEnv({
    "set": [
      ["extensions.openPopupWithoutUserGesture.enabled", false],
    ],
  });

  let extension = ExtensionTestUtils.loadExtension({
    ...extensionData,

    background: async function() {
      await browser.test.assertRejects(
        browser.browserAction.openPopup(),
        "openPopup requires a user gesture",
        "Should throw when preference is unset"
      );

      browser.test.notifyPass("withoutPref");
    },
  });

  await extension.startup();
  await extension.awaitFinish("withoutPref");
  await extension.unload();
});
</script>

</body>
</html>