415503.xhtml (455B)
1 <html xmlns="http://www.w3.org/1999/xhtml" 2 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 3 <head> 4 5 <style id="ss" type="text/css"> 6 7 span, popupgroup { display: table; position: absolute; } 8 9 </style> 10 11 <script type="text/javascript"> 12 13 function boom() 14 { 15 var ss = document.getElementById("ss"); 16 ss.removeChild(ss.firstChild); 17 } 18 19 </script> 20 21 </head> 22 23 <body onload="boom();"> 24 25 <span><xul:popupgroup/></span> 26 27 </body> 28 </html>