Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fullscreen / full-screen-min-max-width-height-video.html
blobac80ee460686aaaf9dbb069973eb190ab91778cc
1 <!DOCTYPE html>
2 <script src="full-screen-test.js"></script>
3 <title>User-agent style sheet for video width/height</title>
4 <style>
5 video {
6 min-width: 50% !important;
7 max-width: 50% !important;
8 min-height: 50% !important;
9 max-height: 50% !important;
10 width: 50% !important;
11 height: 50% !important;
13 </style>
14 <video></video>
15 <script>
16 video = document.querySelector('video');
18 waitForEventAndEnd(document, 'webkitfullscreenchange', function()
20 computedStyle = getComputedStyle(video);
21 testExpected('computedStyle.minWidth', '0px');
22 testExpected('computedStyle.maxWidth', 'none');
23 testExpected('computedStyle.minHeight', '0px');
24 testExpected('computedStyle.maxHeight', 'none');
25 testExpected('computedStyle.width', window.innerWidth + 'px');
26 testExpected('computedStyle.height', window.innerHeight + 'px');
27 });
29 runWithKeyDown(function()
31 video.webkitRequestFullscreen();
32 });
33 </script>