SVGRectElement.idl 575 B

12345678910111213
  1. #import <SVG/SVGAnimatedLength.idl>
  2. #import <SVG/SVGGeometryElement.idl>
  3. // https://svgwg.org/svg2-draft/single-page.html#shapes-InterfaceSVGRectElement
  4. [Exposed=Window]
  5. interface SVGRectElement : SVGGeometryElement {
  6. [SameObject] readonly attribute SVGAnimatedLength x;
  7. [SameObject] readonly attribute SVGAnimatedLength y;
  8. [SameObject] readonly attribute SVGAnimatedLength width;
  9. [SameObject] readonly attribute SVGAnimatedLength height;
  10. [SameObject] readonly attribute SVGAnimatedLength rx;
  11. [SameObject] readonly attribute SVGAnimatedLength ry;
  12. };