summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/resources/unload-reporter.html
blob: 18599b2a6eb040d165b0d8b55a6d1475c451ce48 (plain)
1
2
3
4
5
6
7
8
<!DOCTYPE html>
<h1>I'll report to my parent when I'm unloaded</h1>

<script>
  window.onbeforeunload = e => {
    parent.postMessage('unloading', '*');
  };
</script>