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

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

Issue 2784443003: Implemented parseSingleValue in CSSPropertyAPICounterReset. (Closed)
Patch Set: Changed argument type from ponter to address as per change to earlier 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 d2657f8e93a4231c2744c001c68146aafdc70580..b52c8900b39fa0097b2842640ca1f43accd95f54 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
@@ -43,7 +43,6 @@
#include "core/css/properties/CSSPropertyAPI.h"
#include "core/css/properties/CSSPropertyAlignmentUtils.h"
#include "core/css/properties/CSSPropertyColumnUtils.h"
-#include "core/css/properties/CSSPropertyCounterUtils.h"
#include "core/css/properties/CSSPropertyDescriptor.h"
#include "core/css/properties/CSSPropertyFontUtils.h"
#include "core/css/properties/CSSPropertyLengthUtils.h"
@@ -1847,9 +1846,6 @@ const CSSValue* CSSPropertyParser::parseSingleValue(
return CSSPropertyFontUtils::consumeFontFeatureSettings(m_range);
case CSSPropertyFontWeight:
return CSSPropertyFontUtils::consumeFontWeight(m_range);
- case CSSPropertyCounterReset:
- return CSSPropertyCounterUtils::consumeCounter(
- m_range, CSSPropertyCounterUtils::kResetDefaultValue);
case CSSPropertyMaxWidth:
case CSSPropertyMaxHeight:
return CSSPropertyLengthUtils::consumeMaxWidthOrHeight(

Powered by Google App Engine
This is Rietveld 408576698