414170-1.xul 471 B

123456789101112131415161718192021
  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  4. onload="boom();">
  5. <script type="text/javascript">
  6. function boom()
  7. {
  8. var option = document.createElementNS("http://www.w3.org/1999/xhtml", "option");
  9. document.getElementById("tc").appendChild(option);
  10. }
  11. </script>
  12. <tree><treechildren id="tc"><hbox/></treechildren></tree>
  13. </window>