Index: third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp |
diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp |
index c81915678d283b91e3fe5007d3d52546a153c560..ebe7ed42f99edca858375ea8246d892478f94d61 100644 |
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp |
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp |
@@ -418,7 +418,7 @@ PassRefPtr<AnimatableValue> CSSAnimatableValueFactory::create( |
case CSSPropertyBottom: |
return createFromLength(style.bottom(), style); |
case CSSPropertyBoxShadow: |
- return AnimatableShadow::create(style.boxShadow(), style.color()); |
+ return AnimatableShadow::create(style.boxShadow()); |
case CSSPropertyClip: |
if (style.hasAutoClip()) { |
return AnimatableUnknown::create( |
@@ -549,7 +549,7 @@ PassRefPtr<AnimatableValue> CSSAnimatableValueFactory::create( |
case CSSPropertyTextIndent: |
return createFromLength(style.textIndent(), style); |
case CSSPropertyTextShadow: |
- return AnimatableShadow::create(style.textShadow(), style.color()); |
+ return AnimatableShadow::create(style.textShadow()); |
case CSSPropertyTop: |
return createFromLength(style.top(), style); |
case CSSPropertyWebkitBorderHorizontalSpacing: |