summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fullscreen/api/element-request-fullscreen-top-manual.html
blob: 3618344409b0010c9807c007472cf9da06f4d6b4 (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
<!DOCTYPE html>
<title>Element.requestFullscreen() for top element in fullscreen element stack</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../trusted-click.js"></script>
<div id="log"></div>
<div id="top"></div>
<script>
async_test(function(t)
{
    var top = document.getElementById("top");
    trusted_request(top);
    document.onfullscreenchange = t.step_func(function()
    {
        assert_equals(document.fullscreenElement, top);
        document.onfullscreenchange = t.unreached_func("fullscreenchange event");
        trusted_click(t.step_func(function()
        {
            top.requestFullscreen();
            // A fullscreenerror event would be fired after an async section
            // and an animation frame task, so wait until after that.
            t.step_timeout(function()
            {
                requestAnimationFrame(t.step_func_done());
            }, 0);
        }), top);
    });
    document.onfullscreenerror = t.unreached_func("fullscreenerror event");
});
</script>