mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
37
layout/tables/crashtests/339130-1.html
Normal file
37
layout/tables/crashtests/339130-1.html
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<!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");
|
||||
|
||||
table.insertBefore(document.createElement("thead"), document.getElementById("A"));
|
||||
|
||||
var tb2 = document.createElement("tfoot");
|
||||
var tr1 = document.createElement("tr");
|
||||
tb2.appendChild(tr1);
|
||||
table.appendChild(tb2);
|
||||
|
||||
var tr = document.createElement("tr");
|
||||
var td = document.createElement("td");
|
||||
td.appendChild(document.createTextNode("td"));
|
||||
td.setAttribute("rowspan", 0);
|
||||
tr.appendChild(td);
|
||||
document.getElementById("B").appendChild(tr);
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onload="boom();">
|
||||
|
||||
<table id="table">
|
||||
<tfoot id="A"><tr><td>td</td></tr></tfoot>
|
||||
<tfoot id="B"><tr><td>td</td></tr></tfoot>
|
||||
<thead></thead>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue