summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/history/the-history-interface/resources/traverse-during-unload.html
blob: d5ffb7abae819737aa9a72578a43d3113a3a12c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<meta charset="utf-8">

<script>
"use strict";

window.addEventListener("unload", () => {
  history.back();
});

location.href = "message-opener.sub.html?id=destination";
</script>