summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fullscreen/full-screen-api.html
blob: 78cf156dcf56024164ad53dc8b5671a443607268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<body>
    <script src="full-screen-test.js"></script>
<span></span>
<script>
    span = document.getElementsByTagName('span')[0];
    testExpected("document.webkitIsFullScreen", false);
    testExpected("document.webkitCancelFullScreen", undefined, "!=");
    testExpected("document.webkitCurrentFullScreenElement", null);
    testExpected("document.onwebkitfullscreenchange", null)
    testExpected("span.webkitRequestFullScreen", undefined, "!=");
    testExpected("span.onwebkitfullscreenchange", null) 
    endTest();
</script>