mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37: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
33
layout/reftests/bugs/564054-1.html
Normal file
33
layout/reftests/bugs/564054-1.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript">
|
||||
|
||||
function boom()
|
||||
{
|
||||
var tbody = document.getElementById("tbody");
|
||||
var trX = document.createElement('tr');
|
||||
tbody.insertBefore(trX, tbody.getElementsByTagName("tr")[0]);
|
||||
var trY = document.createElement('tr');
|
||||
tbody.insertBefore(trY, trX);
|
||||
var tdY1 = document.createElement('td');
|
||||
tdY1.setAttribute('rowspan', 0);
|
||||
trY.appendChild(tdY1);
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
td {width: 30px; height: 30px;}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body onload="boom();">
|
||||
<table border cellspacing="10px" cellpadding="10px">
|
||||
<tbody id="tbody">
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue