[CherryPick] Implement ValidityState::badInput
[framework/web/webkit-efl.git] / Source / WebCore / css / fullscreen.css
1 :-webkit-full-screen {
2     background-color: white;
3     z-index: 2147483647;
4 }
5
6 :root:-webkit-full-screen-document:not(:-webkit-full-screen), :root:-webkit-full-screen-ancestor {
7     overflow: hidden !important;
8 }
9
10 :-webkit-full-screen-ancestor:not(iframe) {
11     z-index: auto !important;
12     opacity: 1 !important;
13     -webkit-transform: none !important;
14     -webkit-mask: none !important;
15     clip: none !important;
16     -webkit-filter: none !important;
17     -webkit-transition: none !important;
18     -webkit-box-reflect: none !important;
19     -webkit-perspective: none !important;
20     -webkit-transform-style: flat !important;
21 }
22
23 video:-webkit-full-screen, audio:-webkit-full-screen {
24     background-color: transparent !important;
25     position: static !important;
26     margin: 0 !important;
27     height: 100% !important;
28     width: 100% !important;
29     -webkit-box-flex: 1 !important;
30     display: block !important;
31 }
32
33 img:-webkit-full-screen {
34     width: auto;
35     height: 100%;
36     max-width: 100%;
37 }
38
39 iframe:-webkit-full-screen {
40     margin: 0 !important;
41     padding: 0 !important;
42     border: 0 !important;
43     position: fixed !important;
44     height: 100% !important;
45     width: 100% !important;
46     left: 0 !important;
47     top: 0 !important;
48 }