SVGUseElement.idl 645 B

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