Index: Source/core/svg/SVGAnimatedTypeAnimator.cpp |
diff --git a/Source/core/svg/SVGAnimatedTypeAnimator.cpp b/Source/core/svg/SVGAnimatedTypeAnimator.cpp |
index 71a60f0a53ba9273cbe904a6d839454539725b80..cda9fa50e549c5b8739dd8ffd81591c70eecf03c 100644 |
--- a/Source/core/svg/SVGAnimatedTypeAnimator.cpp |
+++ b/Source/core/svg/SVGAnimatedTypeAnimator.cpp |
@@ -188,7 +188,9 @@ PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGAnimatedTypeAnimator::startAnimValAni |
void SVGAnimatedTypeAnimator::stopAnimValAnimation(const SVGElementInstances& list) |
{ |
- ASSERT(isAnimatingSVGDom()); |
+ if (!isAnimatingSVGDom()) |
+ return; |
+ |
SVGElement::InstanceUpdateBlocker blocker(m_contextElement); |
for (SVGElement* elementInstance : list) { |