488210-1.xhtml 548 B

1234567891011121314151617181920
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <script type="text/javascript">
  4. function boom()
  5. {
  6. var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
  7. var listbox = document.createElementNS(XUL_NS, 'listbox');
  8. document.body.appendChild(listbox);
  9. listbox.appendChild(document.createElementNS(XUL_NS, 'listitem'));
  10. listbox.appendChild(document.createElementNS(XUL_NS, 'listboxbody'));
  11. listbox.appendChild(document.createElementNS(XUL_NS, 'hbox'));
  12. }
  13. </script>
  14. </head>
  15. <body onload="boom();"></body>
  16. </html>