Add crashtest.

This commit is contained in:
jruderman@hmc.edu 2008-03-26 15:03:26 -07:00
parent 1d31c11eca
commit 9f6fd24893
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style>
.fl:first-line { }
.inh { position: inherit; }
.abs { position: absolute; }
</style>
<script>
var x, y;
function boom()
{
x = document.getElementById("x");
y = document.getElementById("y");
x.setAttribute('class', "fl abs");
y.setAttribute('class', "inh");
setTimeout(boom2, 5);
}
function boom2()
{
y.setAttribute('class', "abs");
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 5);">
<div id="x">
<p id="y">foo</p>
</div>
</body>
</html>

View File

@ -46,6 +46,7 @@ load 373868-1.xhtml
load 379217-1.xhtml
load 379217-2.xhtml
load 379917-1.xhtml
load 380012-1.html
load 382129-1.xhtml
load 382199-1.html
load 382262-1.html