blob: 18599b2a6eb040d165b0d8b55a6d1475c451ce48 [file] [log] [blame]
<!DOCTYPE html>
<h1>I'll report to my parent when I'm unloaded</h1>
<script>
window.onbeforeunload = e => {
parent.postMessage('unloading', '*');
};
</script>