summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/the-window-object/open-close/close_unload-1.html
blob: 9a9e304e843ebc70795b61919c816345e2cea8ed (plain)
1
2
3
4
5
6
7
<!doctype html>
<script>
onload = function() {opener.postMessage("loaded", "*")};
onunload = function() {
  opener.callback();
}
</script>