mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
34 lines
544 B
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>
|