gecko/layout/tables/crashtests/404301-1.xhtml

22 lines
332 B
HTML
Raw Normal View History

2007-12-16 22:38:48 -08:00
<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>