849593-1.xhtml (803B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head class="reftest-wait"> 3 <meta charset="utf-8"/> 4 <script> 5 <![CDATA[ 6 7 function boom() 8 { 9 var a = document.getElementById('a'); 10 var b = document.getElementById('b'); 11 var c = document.getElementById('c'); 12 var d = document.getElementById('d'); 13 14 b.setCurrentTime(1); 15 16 a.appendChild(c); 17 document.body.removeChild(a); 18 b.appendChild(c); 19 document.documentElement.offsetHeight; 20 d.appendChild(a); 21 22 document.documentElement.removeAttribute('class'); 23 } 24 25 ]]> 26 </script> 27 </head> 28 29 <body onload="setTimeout(boom, 0);"> 30 <svg xmlns="http://www.w3.org/2000/svg" id="a"/> 31 <svg xmlns="http://www.w3.org/2000/svg" id="b"/> 32 <set xmlns="http://www.w3.org/2000/svg" begin="1s" id="c"><div xmlns="http://www.w3.org/1999/xhtml" id="d"></div></set> 33 </body> 34 </html>