mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
22 lines
653 B
Plaintext
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;
|