mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 15:40:28 +00:00
14 lines
495 B
Text
14 lines
495 B
Text
#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;
|