650501-1.xhtml (382B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script> 4 <![CDATA[ 5 6 function boom() 7 { 8 var a = document.createElement("div"); 9 a.innerHTML = "<script>1;<\/script>"; 10 11 var b = document.createElement("div") 12 try { b.innerHTML = "<"; } catch (invalidXML) { } 13 14 document.documentElement.appendChild(a); 15 } 16 17 ]]> 18 </script> 19 </head> 20 <body onload="boom();"></body> 21 </html>