| 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 88e679acc1c70121e23ba33dbc810cf23e8edb7b..8574c6fcade57f7893c4a8d09b6f22ae9a85248a 100644
|
| --- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -1137,7 +1137,7 @@ static CSSValue* valueForContentData(const ComputedStyle& style)
|
| const CounterContent* counter = toCounterContentData(contentData)->counter();
|
| ASSERT(counter);
|
| CSSCustomIdentValue* identifier = CSSCustomIdentValue::create(counter->identifier());
|
| - CSSCustomIdentValue* separator = CSSCustomIdentValue::create(counter->separator());
|
| + CSSStringValue* separator = CSSStringValue::create(counter->separator());
|
| CSSValueID listStyleIdent = CSSValueNone;
|
| if (counter->listStyle() != NoneListStyle)
|
| listStyleIdent = static_cast<CSSValueID>(CSSValueDisc + counter->listStyle());
|
|
|