329477-1.xhtml 508 B

1234567891011121314151617181920212223242526272829303132
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <script>
  4. <![CDATA[
  5. function init()
  6. {
  7. var textbox = document.getElementsByTagName("textbox")[0];
  8. var hbox = SpecialPowers.wrap(document).getAnonymousNodes(textbox)[0];
  9. var menupopup = SpecialPowers.wrap(document).getAnonymousNodes(hbox)[1];
  10. menupopup.click();
  11. }
  12. window.addEventListener("load", init, false);
  13. ]]>
  14. </script>
  15. </head>
  16. <body>
  17. <textbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"/>
  18. </body>
  19. </html>