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: white }
6 col[span] { background: green }
7 td { color: white }
8 </style>
9 </head>
10 <body>
11 <table>
12 <colgroup id="x">
13 <col span="2"></col>
14 <col></col>
15 <col id="y"></col>
16 </colgroup>
17 <tr>
18 <td>One</td>
19 <td>Two</td>
20 <td>Three</td>
21 <td>Four</td>
22 </tr>
23 </table>
24 </body>
25 </html>