summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug431833.html
blob: 131b7d75a84fd5ca65a736b1144fe2b33dbb0a71 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=431833
-->
<head>
  <title>Test for Bug 431833</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <script>
    var loadsComplete = [];
    function test(e) {
      loadsComplete[e.target.id] = true;
    }
    window.addEventListener('DOMFrameContentLoaded',test,true);
  </script>
</head>
<body>

<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=431833">Mozilla Bug 431833</a>
<p id="display">
 <iframe id="f1" srcdoc="1"></iframe>
 <iframe id="f2" srcdoc="2"></iframe>
 <iframe id="f3" srcdoc="<iframe id='f4' src='data:text/html,3'></iframe>"></iframe>
</p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 431833 **/

SimpleTest.waitForExplicitFinish();

addLoadEvent(function() {
    function check(id) {
      ok(loadsComplete[id], "DOMFrameContentLoaded didn't fire for " + id);
    }
    check("f1");
    check("f2");
    check("f3");
    check("f4");
  });

addLoadEvent(SimpleTest.finish);
</script>
</pre>
</body>
</html>