366021-1.xhtml (486B)
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait"> 2 3 <head> 4 <script> 5 6 function boom() 7 { 8 document.getElementById("xulwin").appendChild(document.getElementById("sss")); 9 document.documentElement.removeAttribute("class"); 10 } 11 12 </script> 13 </head> 14 15 16 <body onload="setTimeout(boom, 10)"> 17 18 <span id="sss"><tr><td style="position: absolute;">td</td></tr></span> 19 20 <window id="xulwin" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"></window> 21 22 </body> 23 24 </html>