summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/test_DOMWindowCreated_chromeonly.html
blob: fef6714523ac2e5a495914a284a23b257a9658b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<head>
  <title>DOMWindowCreated not visible in content</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<body onload="ok(true, 'Test finished'); SimpleTest.finish();">
  <p id="display"></p>

  <script type="application/javascript">
  SimpleTest.waitForExplicitFinish();
  window.addEventListener("DOMWindowCreated", function() { ok(false, "DOMWindowCreated should not have fired"); });
  window.addEventListener("DOMDocElementInserted", function() { ok(false, "DOMDocElementInserted should not have fired"); });
  </script>

  <iframe src="data:text/plain,Hi"></iframe>