jruderman%hmc.edu 928d37eda4 Fix lack of crashtest.
----------------------------------------------------------------------


git-svn-id: svn://10.0.0.236/trunk@241432 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-16 03:54:08 +00:00

31 lines
556 B
HTML

<html class="reftest-wait">
<head>
<script>
var i = 0;
function boom()
{
++i;
while (document.body.firstChild)
document.body.removeChild(document.body.firstChild);
var table = document.createElement("table");
document.body.appendChild(table);
document.documentElement.style.color = (i % 2) ? "red" : "magenta";
table.setAttribute("align", "right");
setTimeout(boom, 15);
}
function cont()
{
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom(); setTimeout(cont, 1000);"></body>
</html>