Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fullscreen / full-screen-api.html
blob78cf156dcf56024164ad53dc8b5671a443607268
1 <body>
2 <script src="full-screen-test.js"></script>
3 <span></span>
4 <script>
5 span = document.getElementsByTagName('span')[0];
6 testExpected("document.webkitIsFullScreen", false);
7 testExpected("document.webkitCancelFullScreen", undefined, "!=");
8 testExpected("document.webkitCurrentFullScreenElement", null);
9 testExpected("document.onwebkitfullscreenchange", null)
10 testExpected("span.webkitRequestFullScreen", undefined, "!=");
11 testExpected("span.onwebkitfullscreenchange", null)
12 endTest();
13 </script>