| Index: third_party/WebKit/Source/core/svg/SVGAnimateElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimateElement.cpp b/third_party/WebKit/Source/core/svg/SVGAnimateElement.cpp
|
| index 0da36fda5a0a4bca0fbef254e692da32f32eab33..67e710b6f227f0a0e333521b3583384e95d910cb 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimateElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimateElement.cpp
|
| @@ -355,9 +355,10 @@ void SVGAnimateElement::applyResultsToTarget() {
|
| // property on the target.
|
| MutableStylePropertySet* propertySet =
|
| targetElement()->ensureAnimatedSMILStyleProperties();
|
| - if (propertySet->setProperty(m_animator.cssProperty(),
|
| - m_animatedProperty->valueAsString(), false,
|
| - 0)) {
|
| + if (propertySet
|
| + ->setProperty(m_animator.cssProperty(),
|
| + m_animatedProperty->valueAsString(), false, 0)
|
| + .didChange) {
|
| targetElement()->setNeedsStyleRecalc(
|
| LocalStyleChange,
|
| StyleChangeReasonForTracing::create(StyleChangeReason::Animation));
|
|
|