| Index: third_party/WebKit/Source/core/css/fullscreenAndroid.css
|
| diff --git a/third_party/WebKit/Source/core/css/fullscreenAndroid.css b/third_party/WebKit/Source/core/css/fullscreenAndroid.css
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..584e3335a5d6e794f43d70cd302c1829522cf5ee
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/css/fullscreenAndroid.css
|
| @@ -0,0 +1,11 @@
|
| +video:-webkit-full-screen {
|
| + /* Work around compositing restrictions for fullscreen video on Android. http://crbug.com/618753 */
|
| + /* Borders and background images appear on top of the video. */
|
| + border: none !important;
|
| + background-image: none !important;
|
| + /* These can result in multiple render passes, in which case the video does not appear. */
|
| + opacity: 1 !important;
|
| + -webkit-filter: none !important;
|
| + border-radius: 0 !important;
|
| + mix-blend-mode: normal !important;
|
| +}
|
|
|