layout/reftests/bugs/399209-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 class="reftest-wait">
     3 <head>
     4 <style>
     5   table { background: white; }
     6   col { visibility: collapse; }
     7   td { color: black; }
     8 </style>
     9 <script>
    10 function boom()
    11 {
    12   var col = document.getElementsByTagName("col")[0];
    13   col.parentNode.removeChild(col);
    14   document.documentElement.className = "";
    15 }
    16 </script>
    17 </head>
    18 <body onload="boom();">
    19 <table>
    20   <col span="3">
    21   <td>One</td>
    22   <td>Two</td>
    23   <td>Three</td>
    24 </body>
    25 </html>

mercurial