614499-1.html 341 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function boom()
  6. {
  7. var f = document.getElementById("f");
  8. for (var i = 0; i < 50; ++i) {
  9. f.contentWindow.history.pushState({}, "");
  10. }
  11. document.body.removeChild(f);
  12. }
  13. </script>
  14. </head>
  15. <body onload="boom();"><iframe id="f" src="data:text/html,1"></iframe></body>
  16. </html>