| Index: third_party/WebKit/Source/core/svg/SVGBoolean.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGBoolean.cpp b/third_party/WebKit/Source/core/svg/SVGBoolean.cpp
|
| index 424e36a402fcc8fe6a6948d4683e4456f31706e7..d09fb3535b11689f9c819f655821b87aec6efcbe 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGBoolean.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGBoolean.cpp
|
| @@ -60,7 +60,7 @@ void SVGBoolean::add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| void SVGBoolean::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| {
|
| ASSERT(animationElement);
|
| - bool fromBoolean = animationElement->animationMode() == ToAnimation ? m_value : toSVGBoolean(from)->value();
|
| + bool fromBoolean = animationElement->getAnimationMode() == ToAnimation ? m_value : toSVGBoolean(from)->value();
|
| bool toBoolean = toSVGBoolean(to)->value();
|
|
|
| animationElement->animateDiscreteType<bool>(percentage, fromBoolean, toBoolean, m_value);
|
|
|