395340-1.html 502 B

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