This commit is contained in:
jruderman@hmc.edu 2007-12-16 21:41:10 -08:00
Родитель dca4093492
Коммит 09f427728f
3 изменённых файлов: 64 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,21 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{
var doomed = document.getElementById("doomed");
doomed.parentNode.removeChild(doomed);
}
</script>
</head>
<body onload="boom()">
<table><tbody><tr><td id="doomed" rowspan="3"></td></tr></tbody><div/></table>
</body>
</html>

Просмотреть файл

@ -0,0 +1,41 @@
<html class="reftest-wait">
<head>
<script>
function boom()
{
var a = document.getElementById("a");
var b = document.getElementById("b");
var x = document.getElementById("x");
a.parentNode.insertBefore(x, a);
x.parentNode.removeChild(x);
b.parentNode.removeChild(b);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 30);">
<table>
<tr>
<td id="x">X</td>
</tr>
</table>
<table border="1" style="border-collapse: collapse;">
<tr>
<td id="a">A</td>
</tr>
<tr>
<td id="b" colspan="2">B</td>
</tr>
</table>
</body>
</html>

Просмотреть файл

@ -13,6 +13,8 @@ load 358679-1.xhtml
load 358871-1.xhtml
load 364512-1.html
load 367673-1.xhtml
load 368166-1.xhtml
load 370876-1.html
load 379687-1.html
load 387051-1.html
load 391898-1.html