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

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h

Issue 1473963004: CSS animation for SVG presentation attribute 'd' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Oilpan Created 5 years 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/animation/animatable/AnimatableValue.h
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h
index 797e6b08a9e47eaa6e92a14b86139b8b05867bec..8d0fcba92d66d2290c068b1f62e07833be2b9af1 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableValue.h
@@ -72,6 +72,7 @@ public:
bool isLengthPoint3D() const { return type() == TypeLengthPoint3D; }
bool isLengthSize() const { return type() == TypeLengthSize; }
bool isNeutral() const { return type() == TypeNeutral; }
+ bool isPath() const { return type() == TypePath; }
bool isRepeatable() const { return type() == TypeRepeatable; }
bool isSVGLength() const { return type() == TypeSVGLength; }
bool isSVGPaint() const { return type() == TypeSVGPaint; }
@@ -103,6 +104,7 @@ protected:
TypeLengthPoint3D,
TypeLengthSize,
TypeNeutral,
+ TypePath,
TypeRepeatable,
TypeSVGLength,
TypeSVGPaint,

Powered by Google App Engine
This is Rietveld 408576698