summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/chrome/test_bug932906.xhtml
blob: f7e839d980b4323a3b4adb9a3d15f1900d250f28 (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
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=932906
-->
<window title="Mozilla Bug 932906"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>

  <!-- test results are displayed in the html:body -->
  <body xmlns="http://www.w3.org/1999/xhtml">
  <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=932906"
     target="_blank">Mozilla Bug 932906</a>
  </body>

  <!-- test code goes here -->
  <script type="application/javascript">
  <![CDATA[
  /** Test for Bug 932906 **/
  SimpleTest.waitForExplicitFinish();

  function passToContent(shouldThrow) {
    try {
      $('ifr').contentWindow.obs = Services.obs;
      ok(!shouldThrow, "Didn't throw when passing non-DOM XPCWN to content");
    } catch (e) {
      ok(shouldThrow, "Threw when passing non-DOM XPCWN to content");
      ok(/denied/.test(e), "Threw correct exception: " + e);
    }
  }

  var gLoadCount = 0;
  function loaded() {
    ++gLoadCount;
    if (gLoadCount == 1)
      part1();
    else if (gLoadCount == 2)
      part2();
    else
      ok(false, "Didn't expect three loads");
  }

  function part1() {

    // Make sure that the pref is what we expect for mochitests.
    is(Services.prefs.getBoolPref('dom.use_xbl_scopes_for_remote_xul'), true,
       "Test harness set up like we expect");


    // First, test that we can't normally pass non-DOM XPCWNs to content.
    passToContent(/* shouldThrow = */ true);

    // Now, make sure we _can_ for the remote xul case. We use SpecialPowers
    // for the pref munging because it cleans up after us.
    SpecialPowers.pushPrefEnv({set: [['dom.use_xbl_scopes_for_remote_xul', false]]}, function() {
      $('ifr').contentWindow.location.reload();
    });
  }

  function part2() {
      passToContent(/* shouldThrow = */ false);
      SimpleTest.finish();
  }

  ]]>
  </script>
  <iframe id="ifr" onload="loaded();" type="content" src="http://example.org/tests/js/xpconnect/tests/mochitest/file_empty.html" />
</window>