mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
490 B
HTML
24 lines
490 B
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>col removal</title>
|
||
|
<script type="text/javascript">
|
||
|
function foo ()
|
||
|
{
|
||
|
var out =document.getElementById('outer');
|
||
|
var int =document.getElementById('inner');
|
||
|
out.removeChild(int);
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="foo()">
|
||
|
|
||
|
<table border>
|
||
|
<colgroup width="500px" id="outer">
|
||
|
<col width="200px" id="inner">
|
||
|
</colgroup>
|
||
|
<tr><td> </td></tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|