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

Unified Diff: third_party/WebKit/Source/core/css/StylePropertySerializer.cpp

Issue 2804623002: [css-align] Implement place-self alignment shorthand (Closed)
Patch Set: Added a regression test. Created 3 years, 8 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/Source/core/css/StylePropertySerializer.cpp
diff --git a/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp b/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
index 3d719f225864e2797a9ec65493e8ab6164daea8e..2383a8517a1e6c5b828487a436bc172a9cb2b3c9 100644
--- a/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
+++ b/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
@@ -466,6 +466,8 @@ String StylePropertySerializer::getPropertyValue(
return getAlignmentShorthandValue(placeContentShorthand());
case CSSPropertyPlaceItems:
return getAlignmentShorthandValue(placeItemsShorthand());
+ case CSSPropertyPlaceSelf:
+ return getAlignmentShorthandValue(placeSelfShorthand());
case CSSPropertyFont:
return fontValue();
case CSSPropertyFontVariant:

Powered by Google App Engine
This is Rietveld 408576698