Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |