summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/371290.html
blob: bd9147876ebdfb7bf26fd10dc80f2aa6f6192542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html class="reftest-wait">
<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.remove();  
  var A = document.getElementById('A'); 
  A.remove();  
  document.documentElement.removeAttribute("class");
}
</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>