| Index: third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| index 3ea0b7078f539de509f1d4880dfd23995c07ea8d..c363d2dab048791a57f908124c04dea21a8f8f78 100644
|
| --- a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| @@ -13,6 +13,7 @@
|
| #include "core/animation/CSSLengthListInterpolationType.h"
|
| #include "core/animation/CSSNumberInterpolationType.h"
|
| #include "core/animation/CSSPaintInterpolationType.h"
|
| +#include "core/animation/CSSPathInterpolationType.h"
|
| #include "core/animation/CSSShadowListInterpolationType.h"
|
| #include "core/animation/CSSValueInterpolationType.h"
|
| #include "core/animation/CSSVisibilityInterpolationType.h"
|
| @@ -242,6 +243,9 @@ const InterpolationTypes* applicableTypesForProperty(PropertyHandle property)
|
| case CSSPropertyStroke:
|
| applicableTypes->append(adoptPtr(new CSSPaintInterpolationType(cssProperty)));
|
| break;
|
| + case CSSPropertyD:
|
| + applicableTypes->append(adoptPtr(new CSSPathInterpolationType(cssProperty)));
|
| + break;
|
| case CSSPropertyBoxShadow:
|
| case CSSPropertyTextShadow:
|
| applicableTypes->append(adoptPtr(new CSSShadowListInterpolationType(cssProperty)));
|
|
|