SVGRectElement.idl 495 B

123456789101112
  1. #import <SVG/SVGAnimatedLength.idl>
  2. #import <SVG/SVGGeometryElement.idl>
  3. [Exposed=Window]
  4. interface SVGRectElement : SVGGeometryElement {
  5. [SameObject] readonly attribute SVGAnimatedLength x;
  6. [SameObject] readonly attribute SVGAnimatedLength y;
  7. [SameObject] readonly attribute SVGAnimatedLength width;
  8. [SameObject] readonly attribute SVGAnimatedLength height;
  9. [SameObject] readonly attribute SVGAnimatedLength rx;
  10. [SameObject] readonly attribute SVGAnimatedLength ry;
  11. };