mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
18
testing/web-platform/tests/page-visibility/unload.html
Normal file
18
testing/web-platform/tests/page-visibility/unload.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<!doctype html>
|
||||
<title>visibilitychange fires on unload</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
async_test(function(t) {
|
||||
var w = window.open("unload-1.html");
|
||||
window.onmessage = t.step_func(function(event) {
|
||||
if (event.data === "close") {
|
||||
w.close();
|
||||
return;
|
||||
}
|
||||
assert_equals(event.data, "hidden");
|
||||
t.done();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue