| 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 27c3863a02a7b619b14b15b8de2220f7bd0562e1..0bb2a88de8f471757e3b5eb7800996132eae0751 100644
|
| --- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -1047,7 +1047,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())
|
|
|