Bug 371290 - crashtest

This commit is contained in:
Bernd 2013-01-26 21:28:56 +01:00
parent 705d3f82f4
commit becf2921bb
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,32 @@
<html>
<head>
<title>BC crash</title>
<script>
function doit() {
var C = document.getElementById('C');
var newNode = document.createElement('td');
newNode.setAttribute('id', 'D');
C.insertBefore(newNode, document.getElementById('B'));
var D = document.getElementById('D');
D.parentNode.removeChild(D);
var A = document.getElementById('A');
A.parentNode.removeChild(A);
}
</script>
</head>
<body onload="doit()">
<table style="border-collapse: collapse">
<tbody>
<tr id="C">
<th id="B"></th>
</tr>
<tr>
<td id="A" colspan="2"></th>
</tr>
<tbody><tr><th></th></tr></tbody>
</table>
</body>
</html>

View File

@ -66,6 +66,7 @@ load 370360-1.html
load 370713-1.html
load 370876-1.html
load 370897-1.html
load 371290.html
load 373611-1.html
load 373946-1.html
load 374356-1.html