mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
11 lines
399 B
Plaintext
11 lines
399 B
Plaintext
#import <SVG/SVGAnimatedLength.idl>
|
|
#import <SVG/SVGGeometryElement.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#shapes-InterfaceSVGCircleElement
|
|
[Exposed=Window]
|
|
interface SVGCircleElement : SVGGeometryElement {
|
|
[SameObject] readonly attribute SVGAnimatedLength cx;
|
|
[SameObject] readonly attribute SVGAnimatedLength cy;
|
|
[SameObject] readonly attribute SVGAnimatedLength r;
|
|
};
|