2 <script src=
"full-screen-test.js"></script>
3 <title>User-agent style sheet for video width/height
</title>
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;
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');
29 runWithKeyDown(function()
31 video
.webkitRequestFullscreen();