blob: 56b573308581da254c8faeca942ab317c3795428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{
var b = document.getElementById('b');
b.style.counterIncrement = 'chicken';
document.body.offsetHeight;
b.style.counterIncrement = '';
}
</script>
</head>
<body onload="boom();">
<col id="a" span="2"></col><col id="b"></col>
</body>
</html>
|