gecko/dom/base/crashtests/399712-1.html

30 lines
437 B
HTML
Raw Normal View History

2007-12-13 20:58:42 -08:00
<html class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("ta").style.overflow = "scroll";
setTimeout(boom2, 12);
}
function boom2()
{
document.getElementById("ta").style.overflow = "";
setTimeout(boom, 12);
}
function cont()
{
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom(); setTimeout(cont, 800);">
2007-12-13 20:58:42 -08:00
<textarea id="ta">x</textarea>
</body>
</html>