layout/tables/crashtests/371290.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <html class="reftest-wait">
     2 <head>
     3 <title>BC crash</title>
     4 <script>
     5 function doit() {
     6   var C = document.getElementById('C'); 
     7   var newNode = document.createElement('td'); 
     8   newNode.setAttribute('id', 'D'); 
     9   C.insertBefore(newNode, document.getElementById('B')); 
    10   var D = document.getElementById('D'); 
    11   D.parentNode.removeChild(D);  
    12   var A = document.getElementById('A'); 
    13   A.parentNode.removeChild(A);  
    14   document.documentElement.removeAttribute("class");
    15 }
    16 </script>
    17 </head>
    20 <body onload="doit()">
    21 <table style="border-collapse: collapse">
    22   <tbody>
    23    <tr id="C">
    24      <th id="B"></th>
    25    </tr>
    26    <tr>
    27     <td id="A" colspan="2"></th>
    28    </tr>
    29    <tbody><tr><th></th></tr></tbody>
    31 </table>
    32 </body>
    33 </html>

mercurial