| Index: Source/core/css/CSSCursorImageValue.cpp
|
| diff --git a/Source/core/css/CSSCursorImageValue.cpp b/Source/core/css/CSSCursorImageValue.cpp
|
| index 390c4378a6a181cde2960b35615650997de8af10..16e38f9d7c5ac93ce1c72c96f85b4ebf6ed26063 100644
|
| --- a/Source/core/css/CSSCursorImageValue.cpp
|
| +++ b/Source/core/css/CSSCursorImageValue.cpp
|
| @@ -196,7 +196,7 @@ void CSSCursorImageValue::removeReferencedElement(SVGElement* element)
|
|
|
| bool CSSCursorImageValue::equals(const CSSCursorImageValue& other) const
|
| {
|
| - return m_hotSpotSpecified ? other.m_hotSpotSpecified && m_hotSpot == other.m_hotSpot : !other.m_hotSpotSpecified
|
| + return (m_hotSpotSpecified ? other.m_hotSpotSpecified && m_hotSpot == other.m_hotSpot : !other.m_hotSpotSpecified)
|
| && compareCSSValuePtr(m_imageValue, other.m_imageValue);
|
| }
|
|
|
|
|