399209-2.html (425B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <style> 5 table { background: white; } 6 col { visibility: collapse; } 7 td { color: black; } 8 </style> 9 <script> 10 function boom() 11 { 12 var col = document.getElementsByTagName("col")[0]; 13 col.remove(); 14 document.documentElement.className = ""; 15 } 16 </script> 17 </head> 18 <body onload="boom();"> 19 <table> 20 <col span="3"> 21 <td>One</td> 22 <td>Two</td> 23 <td>Three</td> 24 </body> 25 </html>