unload.html (344B)
1 <!doctype html> 2 <html> 3 <head><title>Document</title></head> 4 <body> 5 <h1>Document</h1> 6 <script> 7 onload = function() { 8 document.addEventListener("visibilitychange", onVisibilityChange, false); 9 opener.postMessage("close", "*"); 10 } 11 12 function onVisibilityChange() { 13 opener.postMessage(document.visibilityState, "*"); 14 } 15 </script> 16 </body> 17 </html>