Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>col removal</title> |
michael@0 | 5 | <script type="text/javascript"> |
michael@0 | 6 | function foo () |
michael@0 | 7 | { |
michael@0 | 8 | var out =document.getElementById('outer'); |
michael@0 | 9 | var int =document.getElementById('inner'); |
michael@0 | 10 | out.removeChild(int); |
michael@0 | 11 | } |
michael@0 | 12 | </script> |
michael@0 | 13 | </head> |
michael@0 | 14 | <body onload="foo()"> |
michael@0 | 15 | |
michael@0 | 16 | <table border> |
michael@0 | 17 | <colgroup width="500px" id="outer"> |
michael@0 | 18 | <col width="200px" id="inner"> |
michael@0 | 19 | </colgroup> |
michael@0 | 20 | <tr><td> </td></tr> |
michael@0 | 21 | </table> |
michael@0 | 22 | </body> |
michael@0 | 23 | </html> |