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

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

Issue 2055023002: Exclude more CSS properties for fullscreen video on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: FullScreen -> Fullscreen. Created 4 years, 6 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
(Empty)
1 video:-webkit-full-screen {
2 /* Work around compositing restrictions for fullscreen video on Android. http: //crbug.com/618753 */
3 /* Borders and background images appear on top of the video. */
4 border: none !important;
5 background-image: none !important;
6 /* These can result in multiple render passes, in which case the video does no t appear. */
7 opacity: 1 !important;
8 -webkit-filter: none !important;
9 border-radius: 0 !important;
10 mix-blend-mode: normal !important;
11 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTheme.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698