https://github.com/web-platform-tests/wpt
Raw File
Tip revision: df89fd5a317a9d4ab43156a4e8f2c161172fcbbd authored by Darren Shen on 05 April 2018, 02:55:33 UTC
[css-typed-om] Add support for grid properties.
Tip revision: df89fd5
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