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

Unified Diff: third_party/WebKit/LayoutTests/css3/flexbox/resources/flexbox.css

Issue 2832503003: [css-flex] Implement the space-evenly content-distribution value (Closed)
Patch Set: Fixed layout tests. Created 3 years, 7 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/css3/flexbox/resources/flexbox.css
diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/resources/flexbox.css b/third_party/WebKit/LayoutTests/css3/flexbox/resources/flexbox.css
index 83502cd144a56c39cf85433342170899881855bd..6b0e581042792eb5f118f41c8ecc9c885a33c01f 100644
--- a/third_party/WebKit/LayoutTests/css3/flexbox/resources/flexbox.css
+++ b/third_party/WebKit/LayoutTests/css3/flexbox/resources/flexbox.css
@@ -70,6 +70,10 @@
-webkit-align-content: space-around;
align-content: space-around;
}
+.align-content-space-around {
+ -webkit-align-content: space-evenly;
+ align-content: space-evenly;
+}
.align-content-stretch {
-webkit-align-content: stretch;
align-content: stretch;
@@ -141,3 +145,7 @@
-webkit-justify-content: space-around;
justify-content: space-around;
}
+.justify-content-space-around {
+ -webkit-justify-content: space-evenly;
+ justify-content: space-evenly;
+}

Powered by Google App Engine
This is Rietveld 408576698