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

Unified Diff: Source/core/css/fullscreen.css

Issue 432323002: Add min-width/max-width/min-height/max-height to the fullscreen UA style sheet (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fullscreen/full-screen-min-max-width-height-video-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/fullscreen.css
diff --git a/Source/core/css/fullscreen.css b/Source/core/css/fullscreen.css
index 337265b9e42e9fc45e42e517654324b80a5168aa..3413165e68960c61b5c49aef98453e5c3a4f7f83 100644
--- a/Source/core/css/fullscreen.css
+++ b/Source/core/css/fullscreen.css
@@ -27,8 +27,12 @@ video:-webkit-full-screen, audio:-webkit-full-screen {
left: 0 !important;
top: 0 ! important;
margin: 0 !important;
- height: 100% !important;
+ min-width: 0 !important;
+ max-width: none !important;
+ min-height: 0 !important;
+ max-height: none !important;
width: 100% !important;
+ height: 100% !important;
flex: 1 !important;
display: block !important;
-webkit-transform: none !important;
@@ -45,8 +49,12 @@ iframe:-webkit-full-screen {
padding: 0 !important;
border: 0 !important;
position: fixed !important;
- height: 100% !important;
+ min-width: 0 !important;
+ max-width: none !important;
+ min-height: 0 !important;
+ max-height: none !important;
width: 100% !important;
+ height: 100% !important;
left: 0 !important;
top: 0 !important;
}
« no previous file with comments | « LayoutTests/fullscreen/full-screen-min-max-width-height-video-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698