478504.html (410B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <script type="text/javascript"> 5 6 var t; 7 8 function a() 9 { 10 if (t) document.body.removeChild(t); 11 12 t = document.createTextNode(""); 13 document.body.appendChild(t); 14 t.data += "ab\u06CD"; 15 16 setTimeout(b, 1); 17 } 18 19 function b() 20 { 21 document.documentElement.offsetHeight; 22 t.data = "d"; 23 t.data += " "; 24 25 setTimeout(a, 1); 26 } 27 28 29 </script> 30 </head> 31 <body onload="a();"> 32 </body> 33 </html>