Mypal/layout/generic/crashtests/438266-1.html

34 lines
544 B
HTML

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
document.getElementById("hr").removeAttribute("width");
document.documentElement.offsetHeight;
var newTR = document.createElement("tr");
document.getElementById("table").appendChild(newTR);
}
</script>
</head>
<body onload="boom()">
<table id="table">
<tbody>
<tr>
<td>
<div><hr width="7000" id="hr"></div>
<div style="-moz-column-width: 100px;">x<li></li></div>
</td>
</tr>
</tbody>
</table>
</body>
</html>