summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/unloading-documents/unload/004-1.html
blob: 5d0497556baa6b67c08fcf86dfc2edd79199dd66 (plain)
1
2
3
4
5
<!doctype html>
<script>
addEventListener("pagehide", function() {parent.events.push("pagehide"); setTimeout(function() {parent.events.push("timeout")}, 0)}, false);
addEventListener("unload", function() {parent.events.push("unload")}, false);
</script>