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

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

Issue 132333018: Revert of Reland r165710 "Replace RenderFullScreen with top layer" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/resolver/StyleResolver.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 :-webkit-full-screen { 1 :-webkit-full-screen {
2 background-color: white; 2 background-color: white;
3 } 3 z-index: 2147483647 !important;
4
5 :not(:root):-webkit-full-screen {
6 position: fixed;
7 top: 0;
8 right: 0;
9 bottom: 0;
10 left: 0;
11 margin: 0;
12 box-sizing: border-box;
13 width: 100%;
14 height: 100%;
15 object-fit: contain;
16 }
17
18 :-webkit-full-screen::backdrop {
19 position: fixed;
20 top: 0;
21 right: 0;
22 bottom: 0;
23 left: 0;
24 background: black;
25 } 4 }
26 5
27 :root:-webkit-full-screen-document:not(:-webkit-full-screen), :root:-webkit-full -screen-ancestor { 6 :root:-webkit-full-screen-document:not(:-webkit-full-screen), :root:-webkit-full -screen-ancestor {
28 overflow: hidden !important; 7 overflow: hidden !important;
29 } 8 }
30 9
31 :-webkit-full-screen-ancestor:not(iframe) { 10 :-webkit-full-screen-ancestor:not(iframe) {
32 z-index: auto !important; 11 z-index: auto !important;
33 position: static !important; 12 position: static !important;
34 opacity: 1 !important; 13 opacity: 1 !important;
(...skipping 26 matching lines...) Expand all
61 iframe:-webkit-full-screen { 40 iframe:-webkit-full-screen {
62 margin: 0 !important; 41 margin: 0 !important;
63 padding: 0 !important; 42 padding: 0 !important;
64 border: 0 !important; 43 border: 0 !important;
65 position: fixed !important; 44 position: fixed !important;
66 height: 100% !important; 45 height: 100% !important;
67 width: 100% !important; 46 width: 100% !important;
68 left: 0 !important; 47 left: 0 !important;
69 top: 0 !important; 48 top: 0 !important;
70 } 49 }
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/resolver/StyleResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698