mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
30 lines
754 B
HTML
30 lines
754 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script type="text/javascript">
|
|
function boom()
|
|
{
|
|
iframe = document.getElementById("iframe");
|
|
iframeBody = iframe.contentDocument.body;
|
|
iframeBody.appendChild(makeNamedSpan("w"));
|
|
remove(iframe);
|
|
iframeBody.appendChild(makeNamedSpan("w"));
|
|
remove(iframeBody);
|
|
document.documentElement.className = "";
|
|
}
|
|
|
|
function makeNamedSpan(i)
|
|
{
|
|
var s = document.createElement("span");
|
|
s.id = i;
|
|
return s;
|
|
}
|
|
|
|
function remove(n) { n.parentNode.removeChild(n); }
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<iframe id="iframe" src="data:text/html,S"></iframe>
|
|
</body>
|
|
</html>
|