639733.xhtml 461 B

123456789101112131415161718192021222324252627
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <script>
  4. <![CDATA[
  5. function remove(n)
  6. {
  7. n.parentNode.removeChild(n);
  8. }
  9. function boom()
  10. {
  11. document.documentElement.offsetHeight;
  12. remove(document.getElementById("s"));
  13. remove(document.getElementById("e"));
  14. document.documentElement.offsetHeight;
  15. }
  16. ]]>
  17. </script>
  18. </head>
  19. <body onload="boom();">
  20. <embed id="e" src="data:text/html,A"></embed><span id="s"><div></div></span><isindex/>
  21. </body>
  22. </html>