Index: Source/core/animation/StringKeyframe.cpp |
diff --git a/Source/core/animation/StringKeyframe.cpp b/Source/core/animation/StringKeyframe.cpp |
index d07256024591e614f497dd83b1624a98a77e3ee6..59bf66e5aff093f71ab8f70c88c3cd55e42addc1 100644 |
--- a/Source/core/animation/StringKeyframe.cpp |
+++ b/Source/core/animation/StringKeyframe.cpp |
@@ -16,7 +16,6 @@ |
#include "core/animation/LengthPairStyleInterpolation.h" |
#include "core/animation/LengthStyleInterpolation.h" |
#include "core/animation/ListStyleInterpolation.h" |
-#include "core/animation/SVGLengthStyleInterpolation.h" |
#include "core/animation/SVGStrokeDasharrayStyleInterpolation.h" |
#include "core/animation/ShadowStyleInterpolation.h" |
#include "core/animation/VisibilityStyleInterpolation.h" |
@@ -172,6 +171,7 @@ PassRefPtrWillBeRawPtr<Interpolation> StringKeyframe::PropertySpecificKeyframe:: |
case CSSPropertyPaddingTop: |
case CSSPropertyPerspective: |
case CSSPropertyShapeMargin: |
+ case CSSPropertyStrokeWidth: |
case CSSPropertyWebkitBorderHorizontalSpacing: |
case CSSPropertyWebkitBorderVerticalSpacing: |
case CSSPropertyWebkitColumnGap: |
@@ -333,13 +333,6 @@ PassRefPtrWillBeRawPtr<Interpolation> StringKeyframe::PropertySpecificKeyframe:: |
break; |
} |
- case CSSPropertyStrokeWidth: { |
- RefPtrWillBeRawPtr<Interpolation> interpolation = SVGLengthStyleInterpolation::maybeCreate(*fromCSSValue, *toCSSValue, property, RangeNonNegative); |
- if (interpolation) |
- return interpolation.release(); |
- |
- break; |
- } |
case CSSPropertyStrokeDasharray: { |
RefPtrWillBeRawPtr<Interpolation> interpolation = SVGStrokeDasharrayStyleInterpolation::maybeCreate(*fromCSSValue, *toCSSValue, property); |
if (interpolation) |
@@ -347,6 +340,7 @@ PassRefPtrWillBeRawPtr<Interpolation> StringKeyframe::PropertySpecificKeyframe:: |
break; |
} |
+ |
default: |
// Fall back to LegacyStyleInterpolation. |
fallBackToLegacy = true; |