1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-27 11:51:17 +00:00
Files
UXP/testing/web-platform/tests/fullscreen/api/document-fullscreen-enabled.html
T

18 lines
597 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>
<iframe allowfullscreen></iframe>
<script>
test(function()
{
assert_true(document.fullscreenEnabled, "top-level document");
var iframes = document.getElementsByTagName("iframe");
assert_false(iframes[0].contentDocument.fullscreenEnabled, "iframe without allowfullscreen");
assert_true(iframes[1].contentDocument.fullscreenEnabled, "iframe with allowfullscreen");
});
</script>