| Index: Source/core/editing/markup.cpp
|
| diff --git a/Source/core/editing/markup.cpp b/Source/core/editing/markup.cpp
|
| index 9100f4600864d02d838a9e1507319fd70a85d20c..1e766c5182d30516531d6fd7b88ffeb3b4e707ea 100644
|
| --- a/Source/core/editing/markup.cpp
|
| +++ b/Source/core/editing/markup.cpp
|
| @@ -167,7 +167,7 @@ bool propertyMissingOrEqualToNone(StylePropertySet* style, CSSPropertyID propert
|
| return true;
|
| if (!value->isPrimitiveValue())
|
| return false;
|
| - return toCSSPrimitiveValue(value)->getValueID() == CSSValueNone;
|
| + return toCSSPrimitiveValue(*value).getValueID() == CSSValueNone;
|
| }
|
|
|
| static bool isPresentationalHTMLElement(const Node* node)
|
|
|