Add crashtest!

This commit is contained in:
jruderman@hmc.edu 2007-12-16 19:06:31 -08:00
parent 17d21b05bf
commit 9e12f32b6f
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,38 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<script>
function boom() {
var table = document.getElementById("table");
var doomed = document.getElementById("doomed");
doomed.parentNode.removeChild(doomed);
var colgroup1 = document.createElement("colgroup");
table.appendChild(colgroup1);
var thead = document.createElement("thead");
var tr = document.createElement("tr");
var td = document.createElement("td");
td.setAttribute("colspan", 0);
tr.appendChild(td);
thead.appendChild(tr);
table.insertBefore(thead, colgroup1);
colgroup1.parentNode.removeChild(colgroup1);
var colgroup2 = document.createElement("colgroup");
table.appendChild(colgroup2);
}
</script>
</head>
<body onload="boom();">
<table id="table"><tbody><tr id="doomed"><td>x</tr></tbody></table>
</body>
</html>

View File

@ -2,6 +2,7 @@ load 55789-1.html
load 284844-1.html
load 331344-1.html
load 331446-1.xhtml
load 339315-1.html
load 379687-1.html
load 398157-1.xhtml
load 399209-1.xhtml