mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
24 lines
683 B
Text
24 lines
683 B
Text
|
|
#import <SVG/SVGElement.idl>
|
||
|
|
|
||
|
|
// 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;
|