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