Fix lack of crashtest. ----------------------------------------------------------------------

This commit is contained in:
jruderman@hmc.edu 2007-12-15 19:54:08 -08:00
parent 19726fe69d
commit 6cf4399f07
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<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>

View File

@ -22,3 +22,4 @@ load 379920-2.svg
load 397011-1.xhtml
load 399132-1.xhtml
load 399687-1.html
load 403175-1.html