851418.html 454 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html class="reftest-wait">
  3. <head>
  4. <meta charset="UTF-8">
  5. <script>
  6. function boom()
  7. {
  8. var frameDoc = document.getElementById("f").contentDocument;
  9. var frameRoot = frameDoc.documentElement;
  10. frameDoc.write("");
  11. frameRoot.setAttribute("onload", "");
  12. frameRoot.onload;
  13. document.documentElement.removeAttribute("class");
  14. }
  15. </script>
  16. </head>
  17. <body onload="boom();">
  18. <iframe id="f" src="data:text/html,1"></iframe>
  19. </body>
  20. </html>