mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
LibWeb: Implement <feOffset> SVG filter
This commit is contained in:
parent
89b59cb5c3
commit
1377dba7af
Notes:
github-actions[bot]
2025-08-07 14:43:35 +00:00
Author: https://github.com/gmta
Commit: 1377dba7af
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5742
11 changed files with 141 additions and 0 deletions
14
Libraries/LibWeb/SVG/SVGFEOffsetElement.idl
Normal file
14
Libraries/LibWeb/SVG/SVGFEOffsetElement.idl
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue