no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 399209-1.html
blob9216db0b14a4c4496e7966c0dd02593ef41f65ee
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 table { background: white; }
6 col { background: green; }
7 td { color: white; }
8 </style>
9 <script>
10 function boom()
12 var col = document.getElementsByTagName("col")[0];
13 col.remove();
14 document.documentElement.className = "";
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>