| Index: Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| diff --git a/Source/core/css/resolver/AnimatedStyleBuilder.cpp b/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| index 012e38707eb0adc708a814a1165207c686a119ce..b126a98fb316888b8f8cef8fd9fcb98cf11c9446 100644
|
| --- a/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| +++ b/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| @@ -39,6 +39,7 @@
|
| #include "core/animation/AnimatableLengthBox.h"
|
| #include "core/animation/AnimatableLengthSize.h"
|
| #include "core/animation/AnimatableSVGLength.h"
|
| +#include "core/animation/AnimatableSVGLengthVector.h"
|
| #include "core/animation/AnimatableSVGPaint.h"
|
| #include "core/animation/AnimatableShapeValue.h"
|
| #include "core/animation/AnimatableTransform.h"
|
| @@ -262,6 +263,9 @@ void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverSt
|
| case CSSPropertyStopOpacity:
|
| style->setStopOpacity(clampTo<float>(toAnimatableDouble(value)->toDouble(), 0, 1));
|
| return;
|
| + case CSSPropertyStrokeDasharray:
|
| + style->setStrokeDashArray(toAnimatableSVGLengthVector(value)->toSVGLengthVector());
|
| + return;
|
| case CSSPropertyStrokeDashoffset:
|
| style->setStrokeDashOffset(toAnimatableSVGLength(value)->toSVGLength());
|
| return;
|
|
|