2022-11-10 13:49:26 +01:00
|
|
|
#import <SVG/SVGAnimatedLength.idl>
|
2023-11-08 11:04:56 -07:00
|
|
|
#import <SVG/SVGGraphicsElement.idl>
|
2022-11-10 13:49:26 +01:00
|
|
|
|
2023-11-07 19:29:22 -07:00
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#embedded-InterfaceSVGForeignObjectElement
|
2022-11-10 13:49:26 +01:00
|
|
|
[Exposed=Window]
|
|
|
|
interface SVGForeignObjectElement : SVGGraphicsElement {
|
|
|
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength x;
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength y;
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength width;
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength height;
|
|
|
|
|
|
|
|
};
|