fune/browser/base/content/test/tabPrompts/openPromptOffTimeout.html
Timothy Guan-tin Chien b7fa00b590 Bug 1266611 - Multiple tab prompts should not overlap, r=gijs
MozReview-Commit-ID: 6wjdoiR38Wb

--HG--
rename : browser/base/content/test/general/openPromptOffTimeout.html => browser/base/content/test/tabPrompts/openPromptOffTimeout.html
extra : rebase_source : dab1ec206a4f511f7bdf2108ed22d73d0df4c4c7
2016-05-21 21:13:10 +08:00

10 lines
213 B
HTML

<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>