369126-1.html 470 B

1234567891011121314151617
  1. <html class="reftest-wait">
  2. <head>
  3. <script>
  4. function boom()
  5. {
  6. document.getElementById("frameset").removeChild(document.getElementById("frame"));
  7. document.documentElement.removeAttribute("class");
  8. }
  9. </script>
  10. </head>
  11. <frameset id="frameset" onload="setTimeout(boom, 100)">
  12. <frame id="frame" src="data:text/html,<body onUnload=&quot;location = 'http://www.mozilla.org/'&quot;>This frame's onunload tries to load another page.">
  13. </frameset>
  14. </html>