Index: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
index ef53f27a56d352cc1dcfff3777105ba4edc59bd8..d39924f155497a087e3dcdca728bb4a2ff9f2e48 100644 |
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
@@ -1048,7 +1048,7 @@ static PassRefPtrWillBeRawPtr<CSSValue> valueForCounterDirectives(const Computed |
list->append(CSSCustomIdentValue::create(item.key)); |
short number = propertyID == CSSPropertyCounterIncrement ? item.value.incrementValue() : item.value.resetValue(); |
- list->append(cssValuePool().createValue((double)number, CSSPrimitiveValue::UnitType::Number)); |
+ list->append(cssValuePool().createValue((double)number, CSSPrimitiveValue::UnitType::Integer)); |
} |
if (!list->length()) |