LibWeb: Implement <feImage> SVG filter

This commit is contained in:
Tim Ledbetter 2025-08-06 22:52:29 +01:00 committed by Sam Atkins
parent 5eff541804
commit d4f05bc4ef
Notes: github-actions[bot] 2025-08-29 09:16:34 +00:00
19 changed files with 242 additions and 3 deletions

View file

@ -0,0 +1,14 @@
#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;