gecko-dev/layout/generic/crashtests/438266-1.html

34 строки
544 B
HTML
Исходник Обычный вид История

2009-06-19 06:17:24 +04:00
<!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>