1
0
Fork 0
firefox/testing/web-platform/tests/page-visibility/onvisibilitychange.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
594 B
HTML

<!doctype html>
<title>onvisibilitychange attribute is a proper event handler</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
var ast = new async_test("onvisibilitychange attribute is a proper event handler");
function startTest() {
var iframe1 = document.getElementById("frame1");
iframe1.contentWindow.document.onvisibilitychange = ast.step_func(function() {
ast.done();
});
frame1.parentNode.removeChild(frame1);
}
</script>
<iframe id="frame1" src='resources/iframe.html'></iframe>