Definition
SVG Animations defines SVGAnimationElement
[Exposed=Window]
interface SVGAnimationElement : SVGElement {
readonly attribute SVGElement? targetElement;
attribute EventHandler onbegin;
attribute EventHandler onend;
attribute EventHandler onrepeat;
float getStartTime();
float getCurrentTime();
float getSimpleDuration();
undefined beginElement();
undefined beginElementAt(float offset);
undefined endElement();
undefined endElementAt(float offset);
};
SVGAnimationElement includes SVGTests;
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface SVGAnimationElement : SVGElement {
readonly attribute SVGElement? targetElement;
attribute EventHandler onbegin;
attribute EventHandler onend;
attribute EventHandler onrepeat;
float getStartTime();
float getCurrentTime();
float getSimpleDuration();
undefined beginElement();
undefined beginElementAt(float offset);
undefined endElement();
undefined endElementAt(float offset);
[SameObject] readonly attribute SVGStringList requiredExtensions;
[SameObject] readonly attribute SVGStringList systemLanguage;
};