479931-1.xhtml 449 B

1234567891011121314151617181920
  1. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  2. <head>
  3. <script type="text/javascript">
  4. function boom()
  5. {
  6. var o = document.createElementNS("http://www.w3.org/1999/xhtml", "option");
  7. var q = document.getElementById("q");
  8. q.appendChild(o);
  9. }
  10. </script>
  11. </head>
  12. <body onload="boom();">
  13. <xul:tree><xul:treechildren id="q"><div/></xul:treechildren></xul:tree>
  14. </body>
  15. </html>