673853.html (490B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var otherDoc = document.implementation.createDocument('', '', null); 9 var input = otherDoc.createElementNS("http://www.w3.org/1999/xhtml", "input"); 10 var form = otherDoc.createElementNS("http://www.w3.org/1999/xhtml", "form"); 11 input.setAttributeNS(null, "form", "x"); 12 form.setAttributeNS(null, "id", "x"); 13 input.appendChild(form); 14 otherDoc.appendChild(input); 15 } 16 17 </script> 18 </head> 19 <body onload="boom();"></body> 20 </html>