| Index: third_party/WebKit/Source/core/animation/EffectInput.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/EffectInput.cpp b/third_party/WebKit/Source/core/animation/EffectInput.cpp
|
| index 6e96572bcd4d18c327f288965507ae19d90559d2..cbfb6a3f4719e04765f46656e6116513abe1ea5b 100644
|
| --- a/third_party/WebKit/Source/core/animation/EffectInput.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/EffectInput.cpp
|
| @@ -83,12 +83,12 @@ void setKeyframeValue(Element& element, StringKeyframe& keyframe, const String&
|
| StyleSheetContents* styleSheetContents = element.document().elementSheet().contents();
|
| CSSPropertyID cssProperty = AnimationInputHelpers::keyframeAttributeToCSSProperty(property, element.document());
|
| if (cssProperty != CSSPropertyInvalid) {
|
| - keyframe.setCSSPropertyValue(cssProperty, value, &element, styleSheetContents);
|
| + keyframe.setCSSPropertyValue(cssProperty, value, styleSheetContents);
|
| return;
|
| }
|
| cssProperty = AnimationInputHelpers::keyframeAttributeToPresentationAttribute(property, element);
|
| if (cssProperty != CSSPropertyInvalid) {
|
| - keyframe.setPresentationAttributeValue(cssProperty, value, &element, styleSheetContents);
|
| + keyframe.setPresentationAttributeValue(cssProperty, value, styleSheetContents);
|
| return;
|
| }
|
| const QualifiedName* svgAttribute = AnimationInputHelpers::keyframeAttributeToSVGAttribute(property, element);
|
|
|