jruderman%hmc.edu 0af9597437 Add crashtest
git-svn-id: svn://10.0.0.236/trunk@242516 18797224-902f-48f8-a5cc-f745e15eee43
2008-01-06 23:05:40 +00:00

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>