mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|