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

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

Issue 1309513008: [css-grid] Implement grid gutters (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased patch for landing Created 5 years, 2 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 815791c38e1e07494e50e2724936d42e97cc541d..2ffe6bc7b3b13ea765c6f3dfa5d5101aa1c54d70 100644
--- a/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
+++ b/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
@@ -428,6 +428,8 @@ String StylePropertySerializer::getPropertyValue(CSSPropertyID propertyID) const
return getShorthandValue(gridRowShorthand(), " / ");
case CSSPropertyGridArea:
return getShorthandValue(gridAreaShorthand(), " / ");
+ case CSSPropertyGridGap:
+ return getShorthandValue(gridGapShorthand());
case CSSPropertyFont:
return fontValue();
case CSSPropertyMargin:

Powered by Google App Engine
This is Rietveld 408576698