| Index: third_party/WebKit/Source/core/svg/SVGRect.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGRect.cpp b/third_party/WebKit/Source/core/svg/SVGRect.cpp
|
| index 72adceb0028d211a295ba523943ab04f8d0de5c9..131aa14388611996269489b35ee3808446f02624 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGRect.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGRect.cpp
|
| @@ -112,7 +112,7 @@ void SVGRect::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement*)
|
| void SVGRect::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> fromValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*)
|
| {
|
| ASSERT(animationElement);
|
| - RefPtrWillBeRawPtr<SVGRect> fromRect = animationElement->animationMode() == ToAnimation ? PassRefPtrWillBeRawPtr<SVGRect>(this) : toSVGRect(fromValue);
|
| + RefPtrWillBeRawPtr<SVGRect> fromRect = animationElement->getAnimationMode() == ToAnimation ? PassRefPtrWillBeRawPtr<SVGRect>(this) : toSVGRect(fromValue);
|
| RefPtrWillBeRawPtr<SVGRect> toRect = toSVGRect(toValue);
|
| RefPtrWillBeRawPtr<SVGRect> toAtEndOfDurationRect = toSVGRect(toAtEndOfDurationValue);
|
|
|
|
|