https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7c6c6afac5e1f9ed9cae1159c3f8a58ad27ff9b8 authored by Philip Jägenstedt on 20 December 2018, 21:19:07 UTC
Trigger full Taskcluster run
Tip revision: 7c6c6af
unload-1.html
<!doctype html>
<html>
<head><title>Document</title></head>
<body>
<h1>Document</h1>
<script>
onload = function() {
  document.addEventListener("visibilitychange", onVisibilityChange, false);
  opener.postMessage("close", "*");
}

function onVisibilityChange() {
  opener.postMessage(document.visibilityState, "*");
}
</script>
</body>
</html>
back to top