1
0
Fork 0
firefox/dom/base/test/fullscreen/file_fullscreen-denied-inner.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

24 lines
774 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body onload="doRequestFullscreen()">
<script>
function doRequestFullscreen() {
function handler(evt) {
document.removeEventListener("fullscreenchange", handler);
document.removeEventListener("fullscreenerror", handler);
parent.is(evt.type, "fullscreenerror", "Request from " +
`document inside ${parent.testTargetName} should be denied`);
parent.continueTest();
}
parent.ok(!document.fullscreenEnabled, "Fullscreen " +
`should not be enabled in ${parent.testTargetName}`);
document.addEventListener("fullscreenchange", handler);
document.addEventListener("fullscreenerror", handler);
document.documentElement.requestFullscreen();
}
</script>
</body>
</html>