Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 table { background: white }
6 td { color: white }
7 </style>
8 <script>
9 function runTest()
10 {
11 document.body.offsetHeight;
12 document.getElementById("col").style.backgroundColor = "green";
13 }
14 </script>
15 </head>
16 <body onload="runTest()">
17 <table>
18 <col id="col" span="2">
19 <tr>
20 <td>One</td>
21 <td>Two</td>
22 <td>Three</td>
23 </tr>
24 </table>
25 </html>