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

Unified Diff: LayoutTests/fast/css-grid-layout/minmax-max-content-resolution-rows.html

Issue 16404015: Unprefix -webkit-min-content and -webkit-max-content for grid layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaselined change Created 7 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css-grid-layout/minmax-max-content-resolution-rows.html
diff --git a/LayoutTests/fast/css-grid-layout/minmax-max-content-resolution-rows.html b/LayoutTests/fast/css-grid-layout/minmax-max-content-resolution-rows.html
index 6c995102d06b70453092edcb87c85fca22296bff..768340cfb3a59b5656483d615c3baa8e4ec0bc8e 100644
--- a/LayoutTests/fast/css-grid-layout/minmax-max-content-resolution-rows.html
+++ b/LayoutTests/fast/css-grid-layout/minmax-max-content-resolution-rows.html
@@ -8,12 +8,12 @@ if (window.testRunner)
<style>
.gridMinMaxContent {
grid-columns: 20px;
- grid-rows: minmax(-webkit-max-content, 50px);
+ grid-rows: minmax(max-content, 50px);
}
.gridMaxMaxContent {
grid-columns: 20px;
- grid-rows: minmax(30px, -webkit-max-content);
+ grid-rows: minmax(30px, max-content);
}
.firstRowFirstColumn {

Powered by Google App Engine
This is Rietveld 408576698