layout/reftests/bugs/371925-1a.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 <!DOCTYPE html>
     2 <html>
     3 <body>
     5 <table id="theTable" border="1"><thead id="thead">
     6     <tr><th>Header</th></tr>
     7   </thead>
     8   <tfoot id="tfoot"><tr><th>Footer</th></tr></tfoot>
     9   <tbody><tr><td id="body">BODY</td></tr></tbody>
    10 </table>
    12 <script>
    13 var style = document.getElementById('tfoot').style;
    14 style.display = "none";
    15 document.body.offsetWidth;
    16 style.display = "table-footer-group";
    17 document.body.offsetWidth;
    18 style.display = "none";
    19 </script>
    21 </body>
    22 </html>

mercurial