| Index: Source/core/editing/markup.cpp
|
| diff --git a/Source/core/editing/markup.cpp b/Source/core/editing/markup.cpp
|
| index d4e9ddbc9960d51c66207477d96419fcd99554dc..9461b9b794f1fdb0b4211ba6aec590304128f96f 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)
|
|
|