jruderman%hmc.edu ea716c5434 Add a crashtest
git-svn-id: svn://10.0.0.236/trunk@242540 18797224-902f-48f8-a5cc-f745e15eee43
2008-01-07 00:30:14 +00:00

33 lines
486 B
HTML

<html class="reftest-wait">
<head>
<style type="text/css">
.a:first-letter { float: right; }
</style>
<script type="text/javascript">
function boom()
{
document.body.style.overflow = "auto";
document.body.className = "a";
setTimeout(boom2, 30);
}
function boom2()
{
var span = document.createElement("span");
document.body.appendChild(span);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();">&#65207;
</body>
</html>