LibWeb: Implement <feOffset> SVG filter

This commit is contained in:
Jelle Raaijmakers 2025-08-06 13:53:50 +02:00 committed by Alexander Kalenik
parent 89b59cb5c3
commit 1377dba7af
Notes: github-actions[bot] 2025-08-07 14:43:35 +00:00
11 changed files with 141 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#import <SVG/SVGAnimatedNumber.idl>
#import <SVG/SVGAnimatedString.idl>
#import <SVG/SVGElement.idl>
#import <SVG/SVGFilterPrimitiveStandardAttributes.idl>
// https://www.w3.org/TR/filter-effects-1/#InterfaceSVGFEOffsetElement
[Exposed=Window]
interface SVGFEOffsetElement : SVGElement {
readonly attribute SVGAnimatedString in1;
readonly attribute SVGAnimatedNumber dx;
readonly attribute SVGAnimatedNumber dy;
};
SVGFEOffsetElement includes SVGFilterPrimitiveStandardAttributes;