2022-03-21 14:34:02 -04:00
|
|
|
#import <SVG/SVGAnimatedLength.idl>
|
2022-02-15 22:40:51 +03:30
|
|
|
#import <SVG/SVGGeometryElement.idl>
|
|
|
|
|
|
2023-11-07 19:29:22 -07:00
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#shapes-InterfaceSVGRectElement
|
2022-02-11 15:52:42 +00:00
|
|
|
[Exposed=Window]
|
|
|
|
|
interface SVGRectElement : SVGGeometryElement {
|
2022-03-21 14:34:02 -04:00
|
|
|
[SameObject] readonly attribute SVGAnimatedLength x;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength y;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength width;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength height;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength rx;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength ry;
|
2022-02-11 15:52:42 +00:00
|
|
|
};
|