summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/mochitest/test_bug887098.html
blob: acf646bd3c80cffde0bae12d567ab46455e82659 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=887098
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 887098</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">
  /* exported loaded */

  /** Test for Bug 887098 **/
  SimpleTest.waitForExplicitFinish();
  /* globals $,evalRef */

  async function loaded() {
    if (!SpecialPowers.Services.prefs.getBoolPref("extensions.InstallTrigger.enabled") ||
        !SpecialPowers.Services.prefs.getBoolPref("extensions.InstallTriggerImpl.enabled")) {
      ok(true, "InstallTrigger is not enabled");
      SimpleTest.finish();
      return;
    }

    await SpecialPowers.pushPrefEnv({
      set: [
        // Bug 1703215: Using SpecialPowers causes about:mozilla to be loaded in the wrong
        // process, hence we have to flip the pref and don't enforce IPC based Principal Vetting.
        ["dom.security.enforceIPCBasedPrincipalVetting", false],
        // Relax the user input requirements while running this test.
        ["xpinstall.userActivation.required", false],
      ],
    });

    var iwin = $("ifr").contentWindow;
    var href = SpecialPowers.wrap(iwin).location.href;
    if (/file_empty/.test(href)) {
      window.evalRef = iwin.eval;
      window.installTriggerRef = iwin.InstallTrigger; // Force lazy instantiation.
      // about:mozilla is privileged, so we need to be privileged to load it.
      SpecialPowers.wrap(iwin).location.href = "about:mozilla";
    } else {
      is(href, "about:mozilla", "Successfully navigated to about:mozilla");
      try {
        evalRef('InstallTrigger.install({URL: "chrome://global/skin/global.css"});');
        ok(false, "Should have thrown when trying to install restricted URI from InstallTrigger");
      } catch (e) {
        // XXXgijs this test broke because of the switch to webidl. I'm told
        // it has to do with compartments and the fact that we eval in "about:mozilla".
        // Tracking in bug 1007671
        todo(/permission/.test(e), "We should throw a security exception. Got: " + e);
      }
      SimpleTest.finish();
    }
  }

  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=887098">Mozilla Bug 887098</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<iframe onload="loaded();" id="ifr" src="file_empty.html"></iframe>
<pre id="test">
</pre>
</body>
</html>