tenfourfox/browser/base/content/test/general/openPromptOffTimeout.html

11 lines
213 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<body>
This page opens an alert box when the page is hidden.
<script>
document.addEventListener("visibilitychange", () => {
if (document.hidden) {
alert("You hid my page!");
}
}, false);
</script>
</body>