Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: docshell/test/mochitest/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<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=404548">Mozilla Bug 404548</a>
<p id="display">
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
var firstRemoved = false;
var secondHidden = false;
SimpleTest.waitForExplicitFinish();
function finishTest() {
is(firstRemoved, true, "Should have removed iframe from the DOM");
is(secondHidden, true, "Should have fired pagehide on second kid");
w.close();
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>