https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f2aec0f81748fe3550e283d4787bb703dc37626c authored by moz-wptsync-bot on 13 March 2018, 19:13:05 UTC
part 3. Move the .links getter from HTMLDocument to Document.
Tip revision: f2aec0f
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