1412173.html (456B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 let f = document.createElement('frame'); 6 f.onload = function() { 7 let frameDocument = f.contentDocument; 8 frameDocument.body.onbeforeunload = function () { frameDocument.write('<p>beforeUnload</p>') }; 9 frameDocument.write('<p>trigger unload</p>') 10 window.stop(); 11 document.documentElement.className = ''; 12 }; 13 document.documentElement.appendChild(f); 14 </script> 15 </head> 16 <body> 17 </body> 18 </html>