summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/test_bug459848.html
blob: 495711fdb7cf059124b7a4ac071ad508820b96de (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=459848
-->
<head>
  <title>Test for Bug 459848</title>
  <script 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=459848">Mozilla Bug 459848</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 459848 **/

var ifr1, irf2;
var doc1, doc2;

function testDocument(d) {
  d.documentElement.setAttribute("onload", "this.setAttribute('didRun', 'true');");
  var e = d.createEvent("Events");
  e.initEvent("load", true, true);
  d.documentElement.dispatchEvent(e);
}

function testDoc2() {
  testDocument(doc2);
  isnot(doc2.documentElement.getAttribute("didRun"), "true",
        "Shouldn't have run an event listener");
  SimpleTest.finish();
}

function startTest() {
  var ifr1 = document.getElementById('iframe1');
  var ifr2 = document.getElementById('iframe2');
  doc1 = ifr1.contentDocument;
  doc2 = ifr2.contentDocument;
  
  testDocument(doc1);
  is(doc1.documentElement.getAttribute("didRun"), "true",
     "Should have run an event listener");

  ifr2.remove();
  setTimeout(testDoc2, 0);
}
SimpleTest.waitForExplicitFinish();
addLoadEvent(startTest);

</script>
</pre>
<iframe id="iframe1"></iframe>
<iframe id="iframe2"></iframe>
</body>
</html>