Wed, 31 Dec 2014 07:16:47 +0100
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>