Files
ladybird/Libraries/LibWeb/SVG/SVGAnimationElement.idl
Shannon Booth cc6e048bd6 LibWeb+LibIDL: Remove support for #import directives during parsing
These no longer serve any purpose now that we run the IDLGenerator
on all of these files at once.
2026-04-24 20:08:29 +02:00

22 lines
653 B
Plaintext

// 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;