mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
11 lines
377 B
Plaintext
11 lines
377 B
Plaintext
#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;
|
|
};
|