| Index: Source/core/css/CSSReflectValue.cpp
|
| diff --git a/Source/core/css/CSSReflectValue.cpp b/Source/core/css/CSSReflectValue.cpp
|
| index 8850e9e002b9d27958cbb9bada6d5fd75ef305fb..4391c473206f1f2a33d1b2bce6755f609661fe54 100644
|
| --- a/Source/core/css/CSSReflectValue.cpp
|
| +++ b/Source/core/css/CSSReflectValue.cpp
|
| @@ -33,14 +33,14 @@ namespace blink {
|
| String CSSReflectValue::customCSSText() const
|
| {
|
| if (m_mask)
|
| - return m_direction->cssText() + ' ' + m_offset->cssText() + ' ' + m_mask->cssText();
|
| - return m_direction->cssText() + ' ' + m_offset->cssText();
|
| + return m_direction.cssText() + ' ' + m_offset.cssText() + ' ' + m_mask->cssText();
|
| + return m_direction.cssText() + ' ' + m_offset.cssText();
|
| }
|
|
|
| bool CSSReflectValue::equals(const CSSReflectValue& other) const
|
| {
|
| - return m_direction == other.m_direction
|
| - && compareCSSValuePtr(m_offset, other.m_offset)
|
| + return m_direction.ptrEquals(other.m_direction)
|
| + && m_offset.ptrEquals(other.m_offset)
|
| && m_mask == other.m_mask;
|
| }
|
|
|
|
|