Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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>