Index: Source/core/html/HTMLHRElement.cpp |
diff --git a/Source/core/html/HTMLHRElement.cpp b/Source/core/html/HTMLHRElement.cpp |
index 5fd57c76854fcf049be4bb712ec6ce84f6470ec2..ceb86edd9d3333e197f943731defc163affaa183 100644 |
--- a/Source/core/html/HTMLHRElement.cpp |
+++ b/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); |
+ CSSValue darkGrayValue = cssValuePool().createColorValue(Color::darkGray); |
style->setProperty(CSSPropertyBorderColor, darkGrayValue); |
style->setProperty(CSSPropertyBackgroundColor, darkGrayValue); |
} |