Bug 575870 - Enable the firefox button on xp themed, classic, and aero basic. r=dao...
[mozilla-central.git] / layout / reftests / bugs / 404666-1.html
blob53bc049afcd00b492c9709b064d2353cc292723b
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 table { background: white }
6 td { color: white }
7 </style>
8 <script>
9 function runTest()
11 document.body.offsetHeight;
12 document.getElementById("col").style.backgroundColor = "green";
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>