summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/unloading-documents/prompt-and-unload-script-uncloseable-1.html
blob: 3a557ce34ea0b9e64cd93e819f6cdaae7c0e91c8 (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
script-uncloseable-1
<script>
onbeforeunload = function() {
  parent.beforeunload_fired = true;
};
onunload = function() {
  parent.unload_fired = true;
};
</script>