SVGForeignObjectElement.idl 444 B

123456789101112
  1. #import <SVG/SVGAnimatedLength.idl>
  2. // https://svgwg.org/svg2-draft/single-page.html#embedded-InterfaceSVGForeignObjectElement
  3. [Exposed=Window]
  4. interface SVGForeignObjectElement : SVGGraphicsElement {
  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. };