SVGForeignObjectElement.idl 481 B

12345678910111213
  1. #import <SVG/SVGAnimatedLength.idl>
  2. #import <SVG/SVGGraphicsElement.idl>
  3. // https://svgwg.org/svg2-draft/single-page.html#embedded-InterfaceSVGForeignObjectElement
  4. [Exposed=Window]
  5. interface SVGForeignObjectElement : SVGGraphicsElement {
  6. [SameObject] readonly attribute SVGAnimatedLength x;
  7. [SameObject] readonly attribute SVGAnimatedLength y;
  8. [SameObject] readonly attribute SVGAnimatedLength width;
  9. [SameObject] readonly attribute SVGAnimatedLength height;
  10. };