Files
ladybird/Libraries/LibWeb/SVG/SVGFEImageElement.idl
2026-03-25 16:02:04 +00:00

15 lines
534 B
Plaintext

#import <SVG/SVGAnimatedString.idl>
#import <SVG/SVGElement.idl>
#import <SVG/SVGFilterPrimitiveStandardAttributes.idl>
#import <SVG/SVGURIReference.idl>
// https://drafts.csswg.org/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;