mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-01 11:27:55 +00:00
Add crashtest!
This commit is contained in:
parent
17d21b05bf
commit
9e12f32b6f
38
layout/tables/crashtests/339315-1.html
Normal file
38
layout/tables/crashtests/339315-1.html
Normal 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>
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user