mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
25 lines
465 B
HTML
25 lines
465 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var marquee = document.getElementById("marquee");
|
|
var span = document.getElementById("span");
|
|
marquee.appendChild(span);
|
|
marquee.removeChild(span);
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="setTimeout(boom, 30);">
|
|
|
|
<marquee id="marquee" />
|
|
|
|
<span id="span"><div>Foo</div><textarea/></span>
|
|
|
|
</body>
|
|
</html>
|