summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/unloading-documents/navigation-within-beforeunload-1.html
blob: b96234fba2cb85b10cfa0e086c723f8aa0a82149 (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
004-1
<script>
addEventListener("beforeunload",
function() {
if (top.counter++ < 999) {
  location = "navigation-within-beforeunload-2.html?" + top.counter;
}
}, false);
</script>