layout/reftests/bugs/371925-1b.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 <body>
     5 <table id="theTable" border="1">
     6   <thead id="thead">
     7     <tr><th>Header</th></tr>
     8   </thead>
     9   <tfoot id="tfoot"><tr><th>Footer</th></tr></tfoot>
    10   <tbody><tr><td id="body">BODY</td></tr></tbody>
    11 </table>
    13 <script>
    14 var style = document.getElementById('tfoot').style;
    15 style.display = "none";
    16 document.body.offsetWidth;
    17 style.display = "table-footer-group";
    18 document.body.offsetWidth;
    19 style.display = "none";
    20 </script>
    22 </body>
    23 </html>

mercurial