jruderman%hmc.edu 6d34283ba3 Add crashtest
git-svn-id: svn://10.0.0.236/trunk@241535 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-17 06:42:01 +00:00

22 lines
332 B
HTML

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