https://github.com/web-platform-tests/wpt
Raw File
Tip revision: dd6fbaac2a7deeea999adeecd4b30a3655f48c7e authored by Yoav Weiss on 19 April 2018, 20:02:31 UTC
[Resource Timing] Align TAO parsing to spec
Tip revision: dd6fbaa
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