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

Unified Diff: 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: Removed two tests which were not testing gutters code Created 5 years, 3 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: Source/core/css/StylePropertySerializer.cpp
diff --git a/Source/core/css/StylePropertySerializer.cpp b/Source/core/css/StylePropertySerializer.cpp
index 5eb0a3fea3fcf5d800f74bf91b700f01e7e06130..06a1427b6e6c8b8d86673f26080c5e5580fb0913 100644
--- a/Source/core/css/StylePropertySerializer.cpp
+++ b/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