jruderman%hmc.edu 160357ff3f This is not your daddy's crashtest.
git-svn-id: svn://10.0.0.236/trunk@241410 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-16 00:51:22 +00:00

34 lines
666 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("b").style.overflow = "hidden";
setTimeout(boom2, 30);
}
function boom2()
{
document.getElementById("g").style.display = "none";
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();">
<div style="float: left;">
<div id="b" style="display: -moz-box; border: 1px solid black;"><img width="16" height="16" src="../../../testing/crashtest/images/tree.gif"/></div>
<div style="position: fixed;"></div>
</div>
<div id="g" style="display: inline"><div></div></div>
</body>
</html>