summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fullscreen/video-webkit-transform-expected.html
blob: 01c76338e84a1bdd8d95fe60355dc3ba4ad5b7ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<video id="video" allowfullscreen></video>
<script>
    if (window.internals)
        runPixelTests = true;
</script>
<script src="full-screen-test.js"></script>
<script>
    var video = document.getElementById('video');

    waitForEvent(document, 'webkitfullscreenchange', function()
    {
        endTest();
    });

    runWithKeyDown(function()
    {
        video.webkitRequestFullScreen();
    });
</script>