-1:000000000000 | 0:0fc62147250e |
---|---|
1 <html xmlns="http://www.w3.org/1999/xhtml" | |
2 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> | |
3 | |
4 <head> | |
5 <script> | |
6 | |
7 function boom() | |
8 { | |
9 document.getElementById("tree").firstChild.data = "xyz"; | |
10 } | |
11 | |
12 </script> | |
13 </head> | |
14 | |
15 <body onload="boom();"> | |
16 | |
17 <xul:tree id="tree">a</xul:tree> | |
18 | |
19 </body> | |
20 </html> |