Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Side by Side Diff: third_party/WebKit/Source/core/css/fullscreen.css

Issue 1656713002: Add will-change: none !important to fullscreen.css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing -expected.html file Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 :-webkit-full-screen { 1 :-webkit-full-screen {
2 background-color: white; 2 background-color: white;
3 z-index: 2147483647 !important; 3 z-index: 2147483647 !important;
4 } 4 }
5 5
6 :root:-webkit-full-screen-ancestor { 6 :root:-webkit-full-screen-ancestor {
7 overflow: hidden !important; 7 overflow: hidden !important;
8 } 8 }
9 9
10 :-webkit-full-screen-ancestor:not(iframe) { 10 :-webkit-full-screen-ancestor:not(iframe) {
11 z-index: auto !important; 11 z-index: auto !important;
12 position: static !important; 12 position: static !important;
13 opacity: 1 !important; 13 opacity: 1 !important;
14 transform: none !important; 14 transform: none !important;
15 -webkit-mask: none !important; 15 -webkit-mask: none !important;
16 clip: none !important; 16 clip: none !important;
17 -webkit-filter: none !important; 17 -webkit-filter: none !important;
18 transition: none !important; 18 transition: none !important;
19 -webkit-box-reflect: none !important; 19 -webkit-box-reflect: none !important;
20 -webkit-perspective: none !important; 20 -webkit-perspective: none !important;
21 -webkit-transform-style: flat !important; 21 -webkit-transform-style: flat !important;
22 will-change: none !important;
22 } 23 }
23 24
24 video:-webkit-full-screen, audio:-webkit-full-screen { 25 video:-webkit-full-screen, audio:-webkit-full-screen {
25 background-color: transparent !important; 26 background-color: transparent !important;
26 position: relative !important; 27 position: relative !important;
27 left: 0 !important; 28 left: 0 !important;
28 top: 0 ! important; 29 top: 0 ! important;
29 margin: 0 !important; 30 margin: 0 !important;
30 min-width: 0 !important; 31 min-width: 0 !important;
31 max-width: none !important; 32 max-width: none !important;
(...skipping 19 matching lines...) Expand all
51 position: fixed !important; 52 position: fixed !important;
52 min-width: 0 !important; 53 min-width: 0 !important;
53 max-width: none !important; 54 max-width: none !important;
54 min-height: 0 !important; 55 min-height: 0 !important;
55 max-height: none !important; 56 max-height: none !important;
56 width: 100% !important; 57 width: 100% !important;
57 height: 100% !important; 58 height: 100% !important;
58 left: 0 !important; 59 left: 0 !important;
59 top: 0 !important; 60 top: 0 !important;
60 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698