21 lines
629 B
Text
21 lines
629 B
Text
// https://svgwg.org/specs/animations/#InterfaceSVGAnimationElement
|
|
[Exposed=Window]
|
|
interface SVGAnimationElement : SVGElement {
|
|
|
|
[FIXME] readonly attribute SVGElement? targetElement;
|
|
|
|
attribute EventHandler onbegin;
|
|
attribute EventHandler onend;
|
|
attribute EventHandler onrepeat;
|
|
|
|
[FIXME] float getStartTime();
|
|
[FIXME] float getCurrentTime();
|
|
[FIXME] float getSimpleDuration();
|
|
|
|
[FIXME] undefined beginElement();
|
|
[FIXME] undefined beginElementAt(float offset);
|
|
[FIXME] undefined endElement();
|
|
[FIXME] undefined endElementAt(float offset);
|
|
};
|
|
|
|
//SVGAnimationElement includes SVGTests;
|