https://github.com/web-platform-tests/wpt
Raw File
Tip revision: fa324625246ca3fa5e5d8fdb9caf43650b2943b9 authored by Guido Urdaneta on 03 October 2017, 11:44:18 UTC
Add SpeechRecognition Web Platform Tests
Tip revision: fa32462
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