blob: 3fb7ec1babb8a3f2908b09537215a54f5748bc10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!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>
|