blob: 3939f2b1fc9a381fe3c000c6943eb01e189b3e38 (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function doTest() {
var n = document.getElementById("n");
for (var i = 0; i < 5; ++i) {
n.style.cssFloat = "left";
document.body.offsetWidth;
n.style.cssFloat = "";
document.body.offsetWidth;
}
document.documentElement.className = "";
}
</script>
</head>
<body onload="doTest()">
<table border="5">
<tr>
<td id="n">TD</td>
</tr>
</table>
</body>
</html>
|