Index: third_party/WebKit/Source/core/animation/PropertyInterpolationTypesMapping.cpp |
diff --git a/third_party/WebKit/Source/core/animation/PropertyInterpolationTypesMapping.cpp b/third_party/WebKit/Source/core/animation/PropertyInterpolationTypesMapping.cpp |
index 612dcf999f66f3cf6ac3d7182ade1f23ce12ba89..c1986c6e0270b4a38d1806e51d6433fa80c7cb09 100644 |
--- a/third_party/WebKit/Source/core/animation/PropertyInterpolationTypesMapping.cpp |
+++ b/third_party/WebKit/Source/core/animation/PropertyInterpolationTypesMapping.cpp |
@@ -12,6 +12,7 @@ |
#include "core/animation/CSSImageListInterpolationType.h" |
#include "core/animation/CSSLengthInterpolationType.h" |
#include "core/animation/CSSLengthListInterpolationType.h" |
+#include "core/animation/CSSMotionRotationInterpolationType.h" |
#include "core/animation/CSSNumberInterpolationType.h" |
#include "core/animation/CSSPaintInterpolationType.h" |
#include "core/animation/CSSPathInterpolationType.h" |
@@ -170,6 +171,9 @@ const InterpolationTypes* PropertyInterpolationTypesMapping::get(const PropertyH |
case CSSPropertyClip: |
applicableTypes->append(adoptPtr(new CSSClipInterpolationType(cssProperty))); |
break; |
+ case CSSPropertyMotionRotation: |
+ applicableTypes->append(adoptPtr(new CSSMotionRotationInterpolationType(cssProperty))); |
+ break; |
default: |
// TODO(alancutter): Support all interpolable CSS properties here so we can stop falling back to the old StyleInterpolation implementation. |
if (CSSPropertyMetadata::isInterpolableProperty(cssProperty)) |