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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.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/parser/CSSParserFastPaths.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
index 657d3a77f0c93fca9c7f8bba088774b6e8ff6460..7596cee18f72e55b6f574ba43ffc1c899c2de8c5 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
@@ -20,6 +20,8 @@ static inline bool isSimpleLengthPropertyID(CSSPropertyID propertyId, bool& acce
{
switch (propertyId) {
case CSSPropertyFontSize:
+ case CSSPropertyGridColumnGap:
+ case CSSPropertyGridRowGap:
case CSSPropertyHeight:
case CSSPropertyWidth:
case CSSPropertyMinHeight:

Powered by Google App Engine
This is Rietveld 408576698