Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<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>