Index: Source/core/editing/markup.cpp |
diff --git a/Source/core/editing/markup.cpp b/Source/core/editing/markup.cpp |
index e3b3e3cb8d29c3b431b1f9ce5d325e6934409798..9100f4600864d02d838a9e1507319fd70a85d20c 100644 |
--- a/Source/core/editing/markup.cpp |
+++ b/Source/core/editing/markup.cpp |
@@ -162,12 +162,12 @@ bool propertyMissingOrEqualToNone(StylePropertySet* style, CSSPropertyID propert |
{ |
if (!style) |
return false; |
- RefPtrWillBeRawPtr<CSSValue> value = style->getPropertyCSSValue(propertyID); |
+ NullableCSSValue value = style->getPropertyCSSValue(propertyID); |
if (!value) |
return true; |
if (!value->isPrimitiveValue()) |
return false; |
- return toCSSPrimitiveValue(value.get())->getValueID() == CSSValueNone; |
+ return toCSSPrimitiveValue(value)->getValueID() == CSSValueNone; |
} |
static bool isPresentationalHTMLElement(const Node* node) |