https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4bb0ffc637a000ad40b0088afe1d02296589b959 authored by Simon Pieters on 03 September 2018, 13:45:20 UTC
HTML: test fieldset content before legend
Tip revision: 4bb0ffc
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