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

Unified Diff: third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp

Issue 2720653002: CSS Motion Path: Implement animation for the offset-path property
Patch Set: move Created 3 years, 10 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/css/CSSPropertyEquality.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp b/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
index 8c69d8ac1dd953c955366abed055976f6dd6d4d2..d940980d1522eb7654e9816eaca89e432ad02c69 100644
--- a/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
+++ b/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
@@ -196,6 +196,8 @@ bool CSSPropertyEquality::propertiesEqual(CSSPropertyID prop,
return a.offsetAnchor() == b.offsetAnchor();
case CSSPropertyOffsetDistance:
return a.offsetDistance() == b.offsetDistance();
+ case CSSPropertyOffsetPath:
+ return dataEquivalent(a.offsetPath(), b.offsetPath());
case CSSPropertyOffsetPosition:
return a.offsetPosition() == b.offsetPosition();
case CSSPropertyOffsetRotate:

Powered by Google App Engine
This is Rietveld 408576698