summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fullscreen/api/element-request-fullscreen-options.tentative.html
blob: b2eb60088a3bee5962cdb42508c75bfd92152c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<title>Element#requestFullscreen({ screen }) tentative support</title>
<link rel="help" href="https://w3c.github.io/window-placement/" />
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
    promise_test(async (t) => {
        await test_driver.set_permission(
            { name: "window-placement" },
            "granted"
        );

        const options = {
            get screen() {
                return undefined;
            },
        };

        await promise_rejects_js(
            t,
            TypeError,
            document.body.requestFullscreen(options)
        );
    }, "fullscreenOptions.screen getter is invoked on requestFullscreen");
</script>