mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
11 lines
460 B
Text
11 lines
460 B
Text
#import <SVG/SVGAnimatedLength.idl>
|
|
#import <SVG/SVGGeometryElement.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#shapes-InterfaceSVGEllipseElement
|
|
[Exposed=Window]
|
|
interface SVGEllipseElement : SVGGeometryElement {
|
|
[SameObject] readonly attribute SVGAnimatedLength cx;
|
|
[SameObject] readonly attribute SVGAnimatedLength cy;
|
|
[SameObject] readonly attribute SVGAnimatedLength rx;
|
|
[SameObject] readonly attribute SVGAnimatedLength ry;
|
|
};
|