layout/reftests/bugs/404666-2.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <style>
     5 table {background-color:green}
     6 col {background-color:red}
     7 td { color: white }
     8 </style>
     9 <script>
    10 function runTest()
    11 {
    12   document.body.offsetHeight;
    13   document.getElementById("col").style.visibility = "collapse";
    14 }
    15 </script>
    16 </head>
    17 <body onload="runTest()">
    18 <table>
    19   <col id="col" span="2">
    20   <tr>
    21    <td>One</td>
    22    <td>Two</td>
    23    <td>Three</td>
    24   </tr>
    25 </table>
    26 </html>

mercurial