https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c03557a067c5fb8b1c1fcf08001cc3b1a2c8c24a authored by Darren Shen on 11 April 2018, 06:13:15 UTC
[css-typed-om] Support remaining mask properties.
Tip revision: c03557a
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