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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css

Issue 2722613003: [css-grid] "normal" alignment is "start" for replaced elements (Closed)
Patch Set: New version Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css b/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css
index 765241bc5af75b27437624e5431b17a65b0aae97..9814a84c7860364e9745be924812d86132527a76 100644
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/resources/grid-alignment.css
@@ -93,6 +93,16 @@
.justifyContentStretch { justify-content: stretch; }
/* Both align-items and justify-items */
+.itemsStretch {
jfernandez 2017/03/01 22:58:53 I guess this should be itemsNormal, shouldn't it ?
Manuel Rego 2017/03/01 23:23:30 Oops, true. :-)
+ align-items: normal;
+ justify-items: normal;
+}
+
+.itemsStretch {
+ align-items: stretch;
+ justify-items: stretch;
+}
+
.itemsStart {
align-items: start;
justify-items: start;

Powered by Google App Engine
This is Rietveld 408576698