mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-17 00:23:00 +00:00
10 lines
377 B
Text
10 lines
377 B
Text
#import <SVG/SVGAnimatedLength.idl>
|
|
#import <SVG/SVGGeometryElement.idl>
|
|
|
|
[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;
|
|
};
|