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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-auto-flow-resolution.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: 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/grid-auto-columns-rows-auto-flow-resolution.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-auto-flow-resolution.html b/LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-auto-flow-resolution.html
index 7d941afedeb1a94c215b9fb81d9a80ea0cfe8172..3e0b1200a70bc2c3c5bd1ae250c80fbeb65f4dcb 100644
--- a/LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-auto-flow-resolution.html
+++ b/LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-auto-flow-resolution.html
@@ -24,8 +24,8 @@ if (window.testRunner)
}
.gridAutoMinMaxContent {
- grid-auto-rows: -webkit-min-content;
- grid-auto-columns: -webkit-max-content;
+ grid-auto-rows: min-content;
+ grid-auto-columns: max-content;
}
</style>
</head>

Powered by Google App Engine
This is Rietveld 408576698