https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e893060fea346c1b05076d048d34bfac0ed23172 authored by Chris Nardi on 02 April 2018, 17:04:26 UTC
Remove test that CSSStyleSheet.media is read-only
Tip revision: e893060
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