ladybird/Libraries/LibWeb/SVG/SVGFEImageElement.idl
2025-08-29 10:15:24 +01:00

14 lines
531 B
Text

#import <SVG/SVGAnimatedString.idl>
#import <SVG/SVGElement.idl>
#import <SVG/SVGFilterPrimitiveStandardAttributes.idl>
#import <SVG/SVGURIReference.idl>
// https://www.w3.org/TR/filter-effects-1/#feImageElement
[Exposed=Window]
interface SVGFEImageElement : SVGElement {
[FIXME] readonly attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio;
[FIXME] readonly attribute SVGAnimatedString crossOrigin;
};
SVGFEImageElement includes SVGFilterPrimitiveStandardAttributes;
SVGFEImageElement includes SVGURIReference;