580129-1.html (390B)
1 <html> 2 <head> 3 <script> 4 5 function boom() 6 { 7 var a = document.documentElement; 8 var b = document.createElementNS("http://www.w3.org/1999/xhtml", "body"); 9 b.setAttributeNS(null, "style", "column-width: 20em;"); 10 a.innerHTML = "<frameset>"; 11 b.innerHTML = "<dd><marquee>x"; 12 document.removeChild(a); 13 document.appendChild(b); 14 } 15 16 </script> 17 </head> 18 <body onload="boom();"></body> 19 </html>