| 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 95f58b6b91e9558b080075866bb380eae163277d..09127c6994de6c8edb9156a61747a29594576527 100644
|
| --- a/third_party/WebKit/Source/core/animation/PropertyInterpolationTypesMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/PropertyInterpolationTypesMapping.cpp
|
| @@ -20,6 +20,7 @@
|
| #include "core/animation/CSSPositionAxisListInterpolationType.h"
|
| #include "core/animation/CSSPositionInterpolationType.h"
|
| #include "core/animation/CSSShadowListInterpolationType.h"
|
| +#include "core/animation/CSSSizeListInterpolationType.h"
|
| #include "core/animation/CSSTransformOriginInterpolationType.h"
|
| #include "core/animation/CSSTranslateInterpolationType.h"
|
| #include "core/animation/CSSValueInterpolationType.h"
|
| @@ -201,6 +202,10 @@ const InterpolationTypes* PropertyInterpolationTypesMapping::get(const PropertyH
|
| case CSSPropertyTransformOrigin:
|
| applicableTypes->append(adoptPtr(new CSSTransformOriginInterpolationType(cssProperty)));
|
| break;
|
| + case CSSPropertyBackgroundSize:
|
| + case CSSPropertyWebkitMaskSize:
|
| + applicableTypes->append(adoptPtr(new CSSSizeListInterpolationType(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))
|
|
|