Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1711)

Unified Diff: Source/core/svg/animation/SVGSMILElement.cpp

Issue 21624005: [SVG] Position set by low priority animation is ignored even though it is active (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/svg/animations/script-tests/animateMotion-multiple.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/animation/SVGSMILElement.cpp
diff --git a/Source/core/svg/animation/SVGSMILElement.cpp b/Source/core/svg/animation/SVGSMILElement.cpp
index 7c8254fc9749ae464539f3706edf07227eb365b0..3074000355cf73e4ec0b144febf47ce0f63f5b10 100644
--- a/Source/core/svg/animation/SVGSMILElement.cpp
+++ b/Source/core/svg/animation/SVGSMILElement.cpp
@@ -1111,7 +1111,7 @@ bool SVGSMILElement::progress(SMILTime elapsed, SVGSMILElement* resultElement, b
if (oldActiveState == Active && m_activeState != Active) {
endedActiveInterval();
pdr. 2013/08/01 21:58:51 Will this endedActiveInterval() call break dynamic
- if (m_activeState != Frozen)
+ if (m_activeState != Frozen && this == resultElement)
clearAnimatedType(m_targetElement);
}
« no previous file with comments | « LayoutTests/svg/animations/script-tests/animateMotion-multiple.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698