Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 <HEAD>
2 <SCRIPT src=tableDom.js>
3 </SCRIPT>
4 <SCRIPT>
6 function doIt() {
7 var table = document.getElementsByTagName("TABLE")[0];
8 var colgroup = document.getElementsByTagName("COLGROUP")[1];
9 table.removeChild(colgroup);
10 }
11 </SCRIPT>
12 </HEAD>
13 <BODY onload="doIt()">
14 <table bgcolor=orange border>
15 <colgroup span=2 width=100></colgroup>
16 <colgroup span=2 width=200></colgroup>
17 <tr>
18 <td>100</td><td>100</td><td>auto</td><td>auto</td>
19 </tr>
20 </table>
21 </BODY></HTML>