| Index: Source/core/svg/SVGAnimateElement.cpp
|
| diff --git a/Source/core/svg/SVGAnimateElement.cpp b/Source/core/svg/SVGAnimateElement.cpp
|
| index 4a4138e413afd2dec73da9989812d846a70b89fc..9c34ed776b821c858b066e23280e9868e4ccc031 100644
|
| --- a/Source/core/svg/SVGAnimateElement.cpp
|
| +++ b/Source/core/svg/SVGAnimateElement.cpp
|
| @@ -94,7 +94,7 @@ void SVGAnimateElement::calculateAnimatedValue(float percentage, unsigned repeat
|
| m_animator->setContextElement(targetElement);
|
|
|
| // Values-animation accumulates using the last values entry corresponding to the end of duration time.
|
| - NewSVGPropertyBase* toAtEndOfDurationProperty = m_toAtEndOfDurationProperty ? m_toAtEndOfDurationProperty.get() : m_toProperty.get();
|
| + SVGPropertyBase* toAtEndOfDurationProperty = m_toAtEndOfDurationProperty ? m_toAtEndOfDurationProperty.get() : m_toProperty.get();
|
| m_animator->calculateAnimatedValue(percentage, repeatCount, m_fromProperty.get(), m_toProperty.get(), toAtEndOfDurationProperty, resultAnimationElement->m_animatedProperty.get());
|
| }
|
|
|
|
|