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

    SimpleTest.waitForExplicitFinish();
    var childGotOnload = false;
    var objectGotOnload = false;

    /** Test for Bug 100533 **/
    function checkEvents() {
      is(childGotOnload, true, "Child got load event");
      is(objectGotOnload, true, "Object got load event");
      SimpleTest.finish();
    }
  </script>
</head>
<body onload="checkEvents()">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=382113">Mozilla Bug 382113</a>
<p id="display"></p>
<div id="content">
  <object type="text/html" data="bug382113_object.html"
          onload="objectGotOnload = true;"></object>
</div>
<pre id="test">
</pre>
</body>
</html>