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

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

Issue 2417853002: [css-grid] Implementing the grid's first line baseline. (Closed)
Patch Set: Patch rebased. Created 4 years, 1 month 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 c8a86bbc280f0f552628dfe8d59f262acee93473..765241bc5af75b27437624e5431b17a65b0aae97 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
@@ -18,6 +18,8 @@
.alignSelfEndSafe { align-self: end safe; }
.alignSelfEndUnsafe { align-self: end unsafe; }
+.alignSelfBaseline { align-self: baseline; }
+
/* align-items */
.alignItemsAuto { align-items: auto; }
.alignItemsStretch { align-items: stretch; }
@@ -159,6 +161,10 @@
align-self: self-end;
justify-self: self-end;
}
+.selfBaseline {
+ align-self: baseline;
+ justify-self: baseline;
+}
/* Both align-content and justify-content */
.contentStart {

Powered by Google App Engine
This is Rietveld 408576698