404666-1.html (383B)
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>