| 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..056fc90bafd3dfba355bec65c401f540903ce548 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)->pathByteStream()); | 
| +        return; | 
| case CSSPropertyCx: | 
| style->setCx(animatableValueToLength(value, state)); | 
| return; | 
|  |