These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
21 lines
653 B
Text
21 lines
653 B
Text
// https://svgwg.org/specs/animations/#InterfaceSVGAnimationElement
|
|
[Exposed=Window]
|
|
interface SVGAnimationElement : SVGElement {
|
|
|
|
[FIXME] readonly attribute SVGElement? targetElement;
|
|
|
|
[FIXME] attribute EventHandler onbegin;
|
|
[FIXME] attribute EventHandler onend;
|
|
[FIXME] 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;
|