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

15 lines
498 B
Plaintext

#import <SVG/SVGAnimatedNumber.idl>
#import <SVG/SVGAnimatedString.idl>
#import <SVG/SVGElement.idl>
#import <SVG/SVGFilterPrimitiveStandardAttributes.idl>
// https://drafts.csswg.org/filter-effects-1/#InterfaceSVGFEOffsetElement
[Exposed=Window]
interface SVGFEOffsetElement : SVGElement {
readonly attribute SVGAnimatedString in1;
readonly attribute SVGAnimatedNumber dx;
readonly attribute SVGAnimatedNumber dy;
};
SVGFEOffsetElement includes SVGFilterPrimitiveStandardAttributes;