mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
23 lines
398 B
HTML
23 lines
398 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
|
|
function foo()
|
|
{
|
|
var div = document.getElementById("div");
|
|
div.parentNode.removeChild(div);
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="setTimeout(foo, 0);">
|
|
|
|
<div id="div" style="display: inline;"><p>x</p></div>
|
|
|
|
<iframe src='data:text/html,<html><body><input value="q">'></iframe>
|
|
|
|
</body>
|
|
</html>
|