https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 58c02cddac41bd8027ce5b31ace82ab47e13d89b authored by Darren Shen on 26 February 2018, 19:13:50 UTC
[css-typed-om] Make custom paint canvas work with <gradient>s.
Tip revision: 58c02cd
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