summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/unloading-documents/prompt/001-1.html
blob: b68afc49ec297a1ea8e1dc901bba620e7ecc3692 (plain)
1
2
3
4
5
6
7
8
9
10
<script>
addEventListener("beforeunload",
function() {
   parent.events.push("beforeunload");
}, false);
parent.events.push("before src change");

location.href = "001-2.html&pipe=trickle(d2)";
parent.events.push("after src change");
</script>