613027.html (432B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var a = document.createElementNS("http://www.w3.org/1999/xhtml", "fieldset"); 9 var b = document.createElementNS("http://www.w3.org/1999/xhtml", "legend"); 10 var c = document.createElementNS("http://www.w3.org/1999/xhtml", "input"); 11 12 a.appendChild(b); 13 a.appendChild(c); 14 a.removeChild(b); 15 c.expandoQ = a; 16 } 17 18 </script> 19 </head> 20 <body onload="boom();"></body> 21 </html>