344340-1.xhtml (729B)
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(foopy, 30);" class="reftest-wait"> 2 3 <script> 4 5 <![CDATA[ 6 7 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; 8 9 function foopy() 10 { 11 var hbox = document.createElementNS(XUL_NS, 'hbox'); 12 var tooltip = document.createElementNS(XUL_NS, 'tooltip'); 13 var vbox = document.createElementNS(XUL_NS, 'vbox'); 14 var toolbarspring = document.createElementNS(XUL_NS, 'toolbarspring'); 15 16 document.documentElement.appendChild(hbox); 17 hbox.appendChild(toolbarspring); 18 19 vbox.appendChild(tooltip); 20 toolbarspring.appendChild(vbox); 21 22 document.documentElement.removeAttribute("class"); 23 } 24 25 ]]> 26 </script> 27 28 </window>