summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fullscreen/api/document-fullscreen-enabled.html
blob: 40430d7bbfbaf9425f45965819ef8b2407cb2c9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!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>