summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fullscreen/rendering/fullscreen-root-fills-page.html
blob: e2a6217346db1a4f7850446760f8be43532fa4d2 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html class="reftest-wait">
<head>
    <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
    <link rel="match" href="fullscreen-root-fills-page-ref.html">
    <style>
        html {
            background-color: red;
            height: 100%;
            overflow: hidden;

            /* These should be no-op */
            top: 200px;
            left: 200px;
            right: 200px;
            bottom: 200px;
        }

        html, body {
            margin: 0;
            padding: 0;
        }

        body, #cover {
            height: 100%;
            width: 100%;
        }

        #cover {
            background-color: green;
        }
    </style>
</head>

<body>
    <div id="cover"></div>
    <script src="/resources/testdriver.js"></script>
    <script src="/resources/testdriver-vendor.js"></script>
    <script>
        document.addEventListener("fullscreenchange", () => {
            document.documentElement.classList.remove("reftest-wait");
        });
        test_driver.bless("fullscreen")
            .then(() => document.documentElement.requestFullscreen())
    </script>
</body>
</html>