summaryrefslogtreecommitdiff
path: root/Source/WebCore/svg/SVGAnimationElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/svg/SVGAnimationElement.cpp')
-rw-r--r--Source/WebCore/svg/SVGAnimationElement.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/Source/WebCore/svg/SVGAnimationElement.cpp b/Source/WebCore/svg/SVGAnimationElement.cpp
index bced2016d..2659dd9df 100644
--- a/Source/WebCore/svg/SVGAnimationElement.cpp
+++ b/Source/WebCore/svg/SVGAnimationElement.cpp
@@ -232,7 +232,7 @@ void SVGAnimationElement::beginElement()
void SVGAnimationElement::beginElementAt(float offset)
{
SMILTime elapsed = this->elapsed();
- addBeginTime(elapsed, elapsed + offset);
+ addBeginTime(elapsed, elapsed + offset, SMILTimeWithOrigin::ScriptOrigin);
}
void SVGAnimationElement::endElement()
@@ -243,7 +243,7 @@ void SVGAnimationElement::endElement()
void SVGAnimationElement::endElementAt(float offset)
{
SMILTime elapsed = this->elapsed();
- addEndTime(elapsed, elapsed + offset);
+ addEndTime(elapsed, elapsed + offset, SMILTimeWithOrigin::ScriptOrigin);
}
AnimationMode SVGAnimationElement::animationMode() const
@@ -624,9 +624,5 @@ void SVGAnimationElement::updateAnimation(float percent, unsigned repeat, SVGSMI
calculateAnimatedValue(effectivePercent, repeat, resultElement);
}
-void SVGAnimationElement::endedActiveInterval()
-{
-}
-
}
#endif // ENABLE(SVG)