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

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

    function test1Done()
    {
      ok(true, "Bareword setTimeout should work after calling document.open().");
  
      var iframe = document.getElementById("testFrame");
      iframe.onload = function () {
        window.runTest2 = iframe.contentWindow.runTest2;
        iframe.onload = function () {
          window.runTest2();
          setTimeout(allDone);
        }

        // Per whatwg spec, "If the src attribute and the srcdoc attribute are
        // both specified together, the srcdoc attribute takes priority."
        //
        // So if we were to use src attribute here, it will be considered as a
        // no-op, so simply use a simple srcdoc here.
        iframe.srcdoc = "<html></html>";
      }
      iframe.srcdoc = "<script>function runTest2() { setTimeout('parent.test2Done()'); };<" + "/script>";
    }
    window.test2DoneCalled = false;
    function test2Done()
    {
      window.test2DoneCalled = true;
    }
    function allDone()
    {
      ok(!window.test2DoneCalled, "Bareword setTimeout should be a noop after the document for the window context that it's called on isn't active anymore.");

      SimpleTest.finish();
    }
  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=936129">Mozilla Bug 936129</a>
<p id="display"></p>
<div id="content" style="display: none">
<iframe id="testFrame" src="file_settimeout_inner.html"></iframe>
</div>
<pre id="test">
</pre>
</body>
</html>