| Index: third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLHRElement.cpp b/third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| index 97cc7f278a93e881b4a516c0e95faa63870a2bc5..f3b2f3c503c2afc119a70f6ea7c79d660514210d 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| @@ -75,7 +75,7 @@ void HTMLHRElement::collectStyleForPresentationAttribute(const QualifiedName& na
|
| if (!hasAttribute(colorAttr)) {
|
| addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderStyle, CSSValueSolid);
|
|
|
| - RefPtrWillBeRawPtr<CSSPrimitiveValue> darkGrayValue = cssValuePool().createColorValue(Color::darkGray);
|
| + RefPtrWillBeRawPtr<CSSColorValue> darkGrayValue = cssValuePool().createColorValue(Color::darkGray);
|
| style->setProperty(CSSPropertyBorderColor, darkGrayValue);
|
| style->setProperty(CSSPropertyBackgroundColor, darkGrayValue);
|
| }
|
|
|