Index: Source/core/svg/animation/SVGSMILElement.cpp |
diff --git a/Source/core/svg/animation/SVGSMILElement.cpp b/Source/core/svg/animation/SVGSMILElement.cpp |
index 903b246481fc94a26cfe1086e3ce0d76039b337b..85645674c1396dd3aba3f5f14e55a0563dcb5b65 100644 |
--- a/Source/core/svg/animation/SVGSMILElement.cpp |
+++ b/Source/core/svg/animation/SVGSMILElement.cpp |
@@ -1144,7 +1144,7 @@ bool SVGSMILElement::progress(SMILTime elapsed, SVGSMILElement* resultElement, b |
if (!m_syncBaseConditionsConnected) |
connectSyncBaseConditions(); |
- if (!m_interval.begin.isFinite()) { |
+ if (!m_interval.begin.isFinite() || !isValid()) { |
fs
2014/07/28 13:21:24
It feels like this could be made to contribute to
kouhei (in TOK)
2014/07/28 13:27:42
Acknowledged.
|
ASSERT(m_activeState == Inactive); |
m_nextProgressTime = SMILTime::unresolved(); |
return false; |