| Index: Source/core/css/CSSProperty.cpp
|
| diff --git a/Source/core/css/CSSProperty.cpp b/Source/core/css/CSSProperty.cpp
|
| index bed5ff87ceff9310c414a3b1db30b3c727964036..1e4a126579d758f62af453a55d97ac1251c6d55a 100644
|
| --- a/Source/core/css/CSSProperty.cpp
|
| +++ b/Source/core/css/CSSProperty.cpp
|
| @@ -267,7 +267,7 @@ bool CSSProperty::isAffectedByAllProperty(CSSPropertyID propertyID)
|
|
|
| bool CSSProperty::operator==(const CSSProperty& other) const
|
| {
|
| - return m_value->equals(*other.m_value) && isImportant() == other.isImportant();
|
| + return m_value.equals(other.m_value) && isImportant() == other.isImportant();
|
| }
|
|
|
| } // namespace blink
|
|
|