summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/mochitest/test_bug940783.html
blob: 9e9e4908423d80d7016f92cec0da3d6e1f95dafc (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=940783
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 940783</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">

  /** Test for Bug 940783 **/
  SimpleTest.waitForExplicitFinish();

  function checkHistoryThrows(hist) {
    checkThrows(function() { hist.length; });
    checkThrows(function() { hist.state; });
    checkThrows(function() { hist.go(); });
    checkThrows(function() { hist.back(); });
    checkThrows(function() { hist.forward(); });
    checkThrows(function() { hist.pushState({}, "foo"); });
    checkThrows(function() { hist.replaceState({}, "foo"); });

  }

  window.gLoads = 0;
  function load() {
    var iwin = $('ifr').contentWindow;
    ++gLoads;
    if (gLoads == 1) {
      window.gHist = iwin.history;
      iwin.location = "file_empty.html";
    } else if (gLoads == 2) {
      checkHistoryThrows(gHist);
      window.gHist = iwin.history;
      iwin.location = "http://example.org/tests/js/xpconnect/tests/mochitest/file_empty.html";
    } else {
      checkHistoryThrows(gHist);
      $('ifr').setAttribute('onload', null);
      SimpleTest.finish();
    }
  }

  function checkThrows(fn) {
    try { fn(); ok(false, "Should have thrown: " + fn.toSource()); }
    catch (e) { ok(!!/denied|insecure/.exec(e), "Threw correctly: " + e); }
  }

  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=940783">Mozilla Bug 940783</a>
<p id="display"></p>
<div id="content" style="display: none">
<iframe id="ifr" onload="load();" src="file_empty.html"></iframe>

</div>
<pre id="test">
</pre>
</body>
</html>