mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
19 lines
653 B
Plaintext
19 lines
653 B
Plaintext
#import <SVG/SVGLength.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGLengthList
|
|
[Exposed=Window]
|
|
interface SVGLengthList {
|
|
|
|
readonly attribute unsigned long length;
|
|
readonly attribute unsigned long numberOfItems;
|
|
|
|
undefined clear();
|
|
SVGLength initialize(SVGLength newItem);
|
|
getter SVGLength getItem(unsigned long index);
|
|
SVGLength insertItemBefore(SVGLength newItem, unsigned long index);
|
|
SVGLength replaceItem(SVGLength newItem, unsigned long index);
|
|
SVGLength removeItem(unsigned long index);
|
|
SVGLength appendItem(SVGLength newItem);
|
|
setter undefined (unsigned long index, SVGLength newItem);
|
|
};
|