https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8ee803e171bc0b0d5e93bebd4a56e3200f08421d authored by Chris Rebert on 29 December 2016, 03:02:36 UTC
Add test for MouseEvent.toElement & MouseEvent.fromElement
Tip revision: 8ee803e
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