summaryrefslogtreecommitdiffstats
path: root/editor/composer/test/test_bug519928.html
blob: 3b1a9ba1759052049042cb97236e034c0522a848 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=519928
-->
<head>
  <title>Test for Bug 519928</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>        
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=519928">Mozilla Bug 519928</a>
<p id="display"></p>
<div id="content">
<iframe id="load-frame"></iframe>  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

var iframe = document.getElementById("load-frame");

function enableJS() { allowJS(true, iframe); }
function disableJS() { allowJS(false, iframe); }
function allowJS(allow, frame) {
  SpecialPowers.wrap(frame.contentWindow)
               .QueryInterface(SpecialPowers.Ci.nsIInterfaceRequestor)
               .getInterface(SpecialPowers.Ci.nsIWebNavigation)
               .QueryInterface(SpecialPowers.Ci.nsIDocShell)
               .allowJavascript = allow;
}

function expectJSAllowed(allowed, testCondition, callback) {
  window.ICanRunMyJS = false;
  var self_ = window;
  testCondition();

  var doc = iframe.contentDocument;
  doc.body.innerHTML = "<iframe></iframe>";
  var innerFrame = doc.querySelector("iframe");
  innerFrame.addEventListener("load", function() {
    innerFrame.removeEventListener("load", arguments.callee, false);

    var msg = "The inner iframe should" + (allowed ? "" : " not") + " be able to run Javascript";
    is(self_.ICanRunMyJS, allowed, msg);
    callback();
  }, false);
  var iframeSrc = "data:text/html,<script>parent.parent.ICanRunMyJS = true;</scr" + "ipt>";
  innerFrame.src = iframeSrc;
}

SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
  var enterDesignMode = function() { document.designMode = "on"; };
  var leaveDesignMode = function() { document.designMode = "off"; };
  expectJSAllowed(false, disableJS, function() {
    expectJSAllowed(true, enableJS, function() {
      expectJSAllowed(true, enterDesignMode, function() {
        expectJSAllowed(true, leaveDesignMode, function() {
          expectJSAllowed(false, disableJS, function() {
            expectJSAllowed(false, enterDesignMode, function() {
              expectJSAllowed(false, leaveDesignMode, function() {
                expectJSAllowed(true, enableJS, function() {
                  enterDesignMode = function() { iframe.contentDocument.designMode = "on"; };
                  leaveDesignMode = function() { iframe.contentDocument.designMode = "off"; };
                  expectJSAllowed(false, disableJS, function() {
                    expectJSAllowed(true, enableJS, function() {
                      expectJSAllowed(true, enterDesignMode, function() {
                        expectJSAllowed(true, leaveDesignMode, function() {
                          expectJSAllowed(false, disableJS, function() {
                            expectJSAllowed(false, enterDesignMode, function() {
                              expectJSAllowed(false, leaveDesignMode, function() {
                                expectJSAllowed(true, enableJS, function() {
                                  testDocumentDisabledJS();
                                });
                              });
                            });
                          });
                        });
                      });
                    });
                  });
                });
              });
            });
          });
        });
      });
    });
  });
});

function testDocumentDisabledJS() {
  window.ICanRunMyJS = false;
  var self_ = window;
  // Ensure design modes are disabled
  document.designMode = "off";
  iframe.contentDocument.designMode = "off";

  // Javascript enabled on the main iframe
  enableJS();

  var doc = iframe.contentDocument;
  doc.body.innerHTML = "<iframe></iframe>";
  var innerFrame = doc.querySelector("iframe");

  // Javascript disabled on the innerFrame.
  allowJS(false, innerFrame);

  innerFrame.addEventListener("load", function() {
    innerFrame.removeEventListener("load", arguments.callee, false);

    var msg = "The inner iframe should not be able to run Javascript";
    is(self_.ICanRunMyJS, false, msg);
    SimpleTest.finish();
  }, false);
  var iframeSrc = "data:text/html,<script>parent.parent.ICanRunMyJS = true;</scr" + "ipt>";
  innerFrame.src = iframeSrc;
}

</script>
</pre>
</body>
</html>