425821-1.xhtml (449B)
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="boom();"> 2 <script type="text/javascript"> 3 4 function boom() 5 { 6 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; 7 var wiz = document.createElementNS(XUL_NS, "wizard"); 8 var btn = document.createElementNS(XUL_NS, "hbox"); 9 btn.setAttribute("anonid", "Buttons"); 10 wiz.appendChild(btn); 11 wiz.cloneNode(true); 12 } 13 14 </script> 15 </window>