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 <html xmlns="http://www.w3.org/1999/xhtml"
2 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
3 <head>
4 <script>
6 function boom()
7 {
8 var listbox = document.getElementById("listbox");
9 var td = document.getElementById("td");
11 var listitem = document.createElementNS(XUL_NS, "listitem");
13 listbox.appendChild(listitem);
14 listbox.appendChild(td);
15 }
17 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
19 </script>
20 </head>
22 <body onload="boom();">
24 <table><tbody><tr><td id="td">X</td></tr></tbody></table>
26 <xul:listbox id="listbox"/>
28 </body>
29 </html>