jruderman%hmc.edu 862c03f96c Add crashtest for the right bug this time.
git-svn-id: svn://10.0.0.236/trunk@241400 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-15 23:52:30 +00:00

35 lines
514 B
HTML

<html class="reftest-wait">
<head>
<script>
function boom()
{
var d = document.getElementById("d");
d.parentNode.removeChild(d);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 30);">
<div id="d">
<div style="float: right">
<table border="1">
<tr>
<td style="display: -moz-groupbox"><img></td>
</tr>
<tr style="position: absolute">
<td>TD2</td>
</tr>
</table>
</div>
</div>
</body>
</html>