713427-2.xhtml (607B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script> 4 <![CDATA[ 5 6 function boom() 7 { 8 while (document.documentElement.firstChild) { 9 document.documentElement.firstChild.remove(); 10 } 11 12 var td = document.createElementNS("http://www.w3.org/1999/xhtml", "td"); 13 td.setAttributeNS(null, "contenteditable", "true"); 14 (document.documentElement).appendChild(td); 15 var head = document.createElementNS("http://www.w3.org/1999/xhtml", "head"); 16 (document.documentElement).appendChild(head); 17 18 head.appendChild(td); 19 } 20 21 window.addEventListener("load", boom); 22 23 ]]> 24 </script> 25 </head> 26 27 <body></body> 28 </html>