893515.html (333B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 function boom() 7 { 8 document.designMode = 'on'; 9 var otherDoc = document.implementation.createDocument("", "", null); 10 otherDoc.adoptNode(document.getElementById("t")); 11 } 12 </script> 13 </head> 14 <body onload="setTimeout(boom, 0);"><textarea id="t"></textarea></body> 15 </html>