1
0
Fork 0
firefox/testing/web-platform/tests/fullscreen/api/document-fullscreen-enabled.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

17 lines
574 B
HTML

<!DOCTYPE html>
<title>Document#fullscreenEnabled</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<iframe></iframe>
<script>
test(function()
{
assert_true(document.fullscreenEnabled, "top-level document");
const iframe = document.querySelector("iframe");
assert_true(iframe.contentDocument.fullscreenEnabled, "same-origin iframe");
});
// The cross-origin iframe case is tested in
// /html/semantics/embedded-content/the-iframe-element/iframe-allowfullscreen.html
</script>