layout/reftests/bugs/492661-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 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <script type="text/javascript">
     5 function boom()
     6 {
     7   var tbody = document.getElementById("tbody");
     8   var table = tbody.parentNode;
     9   table.removeChild(tbody);
    10   document.documentElement.offsetHeight;
    11   table.appendChild(tbody);
    12 }
    13 </script>
    14 </head>
    16 <body onload="boom();">
    18 <table>
    19 <col>
    20 <col style="visibility: collapse;"><col>
    21 <tbody id="tbody">
    22   <tr>
    23     <td>one</td>
    24     <td>two</td>
    25   </tr>
    26   <tr>
    27     <td>one</td>
    28     <td>two</td>
    29   </tr>
    30 </tbody>
    31 </table>
    33 </body>
    34 </html>

mercurial