607222.html (369B)
1 <html><body> 2 <script> 3 4 function G(str){ 5 var cobj=document.createElement(str); 6 document.body.appendChild(cobj); 7 cobj.scrollWidth; 8 } 9 10 function crashme() { 11 document.write("fooFOO"); 12 G("a"); 13 document.write("<a lang></a>a"); 14 G("base"); 15 document.write("barBAR"); 16 G("audio"); 17 } 18 </script> 19 <script>crashme();</script> 20 </body> 21 </html>