layout/tables/crashtests/370876-1.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 <script>
     5 function boom()
     6 {
     7   var a = document.getElementById("a");
     8   var b = document.getElementById("b");
     9   var x = document.getElementById("x");
    11   a.parentNode.insertBefore(x, a);
    12   x.parentNode.removeChild(x);
    13   b.parentNode.removeChild(b);
    15   document.documentElement.removeAttribute("class");
    16 }
    18 </script>
    19 </head>
    22 <body onload="setTimeout(boom, 30);">
    24   <table>
    25     <tr>
    26       <td id="x">X</td>
    27     </tr>
    28   </table>
    30   <table border="1" style="border-collapse: collapse;">
    31     <tr>
    32       <td id="a">A</td>
    33     </tr>
    34     <tr>
    35       <td id="b" colspan="2">B</td>
    36     </tr>
    37   </table>
    39 </body>
    41 </html>

mercurial