395340-1.html (502B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script type="text/javascript"> 4 5 function boom() 6 { 7 var div1 = document.createElement("div"); 8 div1.style.counterIncrement = "chicken"; 9 div1.contentEditable = "true"; 10 11 var div2 = document.createElement("div"); 12 div2.style.counterIncrement = "chicken"; 13 14 document.body.style.content = "'A'"; 15 16 div1.appendChild(div2); 17 document.body.appendChild(div1); 18 div1.removeChild(div2); 19 } 20 21 </script> 22 23 </head> 24 25 <body onload="boom();"> 26 27 </body> 28 </html>