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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp

Issue 2801023002: Revert of Implemented parseSingleValue in CSSPropertyAPICounterIncrement. (Closed)
Patch Set: 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/parser/CSSPropertyParser.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
index 0a847ddcd06e6989e2e23c547c9bfc3c26bf7b26..4fc675cefa91b3314a850185331c2a6e66f0eb78 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
@@ -1844,6 +1844,9 @@
return CSSPropertyFontUtils::consumeFontFeatureSettings(m_range);
case CSSPropertyFontWeight:
return CSSPropertyFontUtils::consumeFontWeight(m_range);
+ case CSSPropertyCounterIncrement:
+ return CSSPropertyCounterUtils::consumeCounter(
+ m_range, CSSPropertyCounterUtils::kIncrementDefaultValue);
case CSSPropertyCounterReset:
return CSSPropertyCounterUtils::consumeCounter(
m_range, CSSPropertyCounterUtils::kResetDefaultValue);

Powered by Google App Engine
This is Rietveld 408576698