jruderman%hmc.edu 21b651761a Add crashtest
git-svn-id: svn://10.0.0.236/trunk@241492 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-17 02:25:31 +00:00

31 lines
414 B
HTML

<html class="reftest-wait">
<head>
<script>
function foo()
{
setTimeout(bar, 30);
}
function bar()
{
document.getElementById("TT").style.position = "absolute";
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="foo();">
<div id="TT"><div style="position: fixed;"><div style="display: -moz-box;"><div style="float: left;"></div></div></div></div>
</body>
</html>