jruderman%hmc.edu 9629396f9b Make this crashtest finish more quickly.
git-svn-id: svn://10.0.0.236/trunk@241608 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-18 01:50:52 +00:00

30 lines
437 B
HTML

<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);">
<textarea id="ta">x</textarea>
</body>
</html>