394384-1.html (471B)
1 <html class="reftest-wait"> 2 <head> 3 <script> 4 5 function boom() 6 { 7 var t1 = document.createTextNode(String.fromCharCode(0x2011) + String.fromCharCode(13)); 8 document.body.appendChild(t1); 9 10 setTimeout(boom2, 30); 11 } 12 13 function boom2() 14 { 15 var letterA = document.createTextNode(String.fromCharCode(65)); 16 document.body.appendChild(letterA); 17 18 document.documentElement.removeAttribute("class"); 19 } 20 21 </script> 22 </head> 23 24 <body onload="setTimeout(boom, 50);"></body> 25 26 </html>