dom/tests/mochitest/bugs/test_DOMWindowCreated_chromeonly.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:3401e53a4b15
1 <!DOCTYPE html>
2 <head>
3 <title>DOMWindowCreated not visible in content</title>
4 <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
5 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
6 <body onload="ok(true, 'Test finished'); SimpleTest.finish();">
7 <p id="display"></p>
8
9 <script type="application/javascript">
10 SimpleTest.waitForExplicitFinish();
11 window.addEventListener("DOMWindowCreated", function() { ok(false, "DOMWindowCreated should not have fired"); }, false);
12
13 <iframe src="data:text/plain,Hi"></iframe>

mercurial