1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-26 10:18:27 +00:00
Files
UXP/testing/web-platform/tests/page-visibility/unload-1.html
T

18 lines
344 B
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>