jruderman%hmc.edu 8a27b4ac10 Add crashtests
git-svn-id: svn://10.0.0.236/trunk@241533 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-17 06:37:33 +00:00

21 lines
307 B
HTML

<html>
<head>
<script>
function boom()
{
var col = document.createElement("col");
col.setAttribute('span', 2);
document.body.appendChild(col);
col.removeAttribute('span');
document.body.offsetHeight;
document.body.removeChild(col);
}
</script>
</head>
<body onload="boom();"></body>
</html>