SVGUseElement.idl 669 B

1234567891011121314151617
  1. #import <SVG/SVGAnimatedLength.idl>
  2. #import <SVG/SVGElement.idl>
  3. #import <SVG/SVGGraphicsElement.idl>
  4. #import <SVG/SVGURIReference.idl>
  5. // https://svgwg.org/svg2-draft/struct.html#InterfaceSVGUseElement
  6. [Exposed=Window]
  7. interface SVGUseElement : SVGGraphicsElement {
  8. [SameObject] readonly attribute SVGAnimatedLength x;
  9. [SameObject] readonly attribute SVGAnimatedLength y;
  10. [SameObject] readonly attribute SVGAnimatedLength width;
  11. [SameObject] readonly attribute SVGAnimatedLength height;
  12. [SameObject] readonly attribute SVGElement? instanceRoot;
  13. [SameObject] readonly attribute SVGElement? animatedInstanceRoot;
  14. };
  15. SVGUseElement includes SVGURIReference;