Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Unified Diff: third_party/WebKit/Source/core/style/StyleMotionData.cpp

Issue 2241993002: CSS Motion Path: New names for properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..9644a37d6e8e05feb7332056349fe2406c507277 100644
--- a/third_party/WebKit/Source/core/style/StyleMotionData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleMotionData.cpp
@@ -10,7 +10,8 @@ namespace blink {
bool StyleMotionData::operator==(const StyleMotionData& o) const
{
- if (m_offset != o.m_offset || m_rotation != o.m_rotation)
+ if (m_distance != o.m_distance
+ || m_rotation != o.m_rotation)
return false;
return dataEquivalent(m_path, o.m_path);

Powered by Google App Engine
This is Rietveld 408576698