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

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

Issue 2783543002: Implemented parseSingleValue in CSSPropertyAPICounterIncrement. (Closed)
Patch Set: Changed CSSParserContext pointer to reference for compatibility with previous patch 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 227bcb1d56ce1bc4a79e93b303ffe90922ce6db1..d2657f8e93a4231c2744c001c68146aafdc70580 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
@@ -1847,9 +1847,6 @@ const CSSValue* CSSPropertyParser::parseSingleValue(
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