| Index: third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp b/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| index bd881bd984bde405ccc230674bbd569705fff430..8b8a148749e1fe5ff5bf9afbde0e6d8b39104bf4 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| @@ -43,6 +43,7 @@
|
| #include "core/animation/animatable/AnimatableLengthPoint.h"
|
| #include "core/animation/animatable/AnimatableLengthPoint3D.h"
|
| #include "core/animation/animatable/AnimatableLengthSize.h"
|
| +#include "core/animation/animatable/AnimatablePath.h"
|
| #include "core/animation/animatable/AnimatableRepeatable.h"
|
| #include "core/animation/animatable/AnimatableSVGPaint.h"
|
| #include "core/animation/animatable/AnimatableShadow.h"
|
| @@ -681,6 +682,9 @@ void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverSt
|
| case CSSPropertyZIndex:
|
| style->setZIndex(clampTo<int>(round(toAnimatableDouble(value)->toDouble())));
|
| return;
|
| + case CSSPropertyD:
|
| + style->setD(toAnimatablePath(value)->pathValue());
|
| + return;
|
| case CSSPropertyCx:
|
| style->setCx(animatableValueToLength(value, state));
|
| return;
|
|
|