Index: third_party/WebKit/Source/core/style/StyleMotionData.cpp |
diff --git a/third_party/WebKit/Source/core/style/StyleMotionData.cpp b/third_party/WebKit/Source/core/style/StyleMotionData.cpp |
index 238fa1a5743274f945eb199feab9c998888eb02a..e49d09e6601920400375deb354083ea313cd12b6 100644 |
--- a/third_party/WebKit/Source/core/style/StyleMotionData.cpp |
+++ b/third_party/WebKit/Source/core/style/StyleMotionData.cpp |
@@ -10,7 +10,10 @@ namespace blink { |
bool StyleMotionData::operator==(const StyleMotionData& o) const |
{ |
- if (m_offset != o.m_offset || m_rotation != o.m_rotation) |
+ if (m_anchor != o.m_anchor |
+ || m_position != o.m_position |
+ || m_distance != o.m_distance |
+ || m_rotation != o.m_rotation) |
return false; |
return dataEquivalent(m_path, o.m_path); |