jruderman%hmc.edu c41e902bfa Add crashtest
git-svn-id: svn://10.0.0.236/trunk@241527 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-17 06:10:20 +00:00

24 lines
318 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
div, col { counter-reset: chicken; }
</style>
<script>
function boom()
{
var col = document.getElementById("col");
col.parentNode.removeChild(col);
}
</script>
</head>
<body onload="boom();">
<div><col id="col" span="2"></col></div>
</body>
</html>