SVGEllipseElement.idl 460 B

1234567891011
  1. #import <SVG/SVGAnimatedLength.idl>
  2. #import <SVG/SVGGeometryElement.idl>
  3. // https://svgwg.org/svg2-draft/single-page.html#shapes-InterfaceSVGEllipseElement
  4. [Exposed=Window]
  5. interface SVGEllipseElement : SVGGeometryElement {
  6. [SameObject] readonly attribute SVGAnimatedLength cx;
  7. [SameObject] readonly attribute SVGAnimatedLength cy;
  8. [SameObject] readonly attribute SVGAnimatedLength rx;
  9. [SameObject] readonly attribute SVGAnimatedLength ry;
  10. };