blob: c654cd9ea782d327427fa7c61155e0e4caf2ff8b (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<!DOCTYPE html>
<html>
<head>
<script language="javascript">
function toggleRow(rowId)
{
var r = document.getElementById(rowId);
if (r.style.display == "none")
r.style.display = "inline";
else
r.style.display = "none";
}
function doTest() {
toggleRow('row4');
document.body.offsetWidth;
toggleRow('row4');
document.body.offsetWidth;
toggleRow('row4');
document.body.offsetWidth;
toggleRow('row4');
document.body.offsetWidth;
toggleRow('row4');
document.body.offsetWidth;
toggleRow('row4');
document.body.offsetWidth;
toggleRow('row4');
document.body.offsetWidth;
toggleRow('row4');
document.body.offsetWidth;
toggleRow('row4');
}
</script>
</head>
<body onload="doTest()">
<table border="5">
<tr>
<td>Row 1</td>
</tr>
<tr>
<td>Row 2</td>
</tr>
<tr>
<td>Row 3</td>
</tr>
<tr id="row4" style="display: none">
<td>Row 4</td>
</tr>
</table>
</body>
</html>
|