mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
LibWeb: Implement <feImage> SVG filter
This commit is contained in:
parent
5eff541804
commit
d4f05bc4ef
Notes:
github-actions[bot]
2025-08-29 09:16:34 +00:00
Author: https://github.com/tcl3
Commit: d4f05bc4ef
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5856
Reviewed-by: https://github.com/AtkinsSJ ✅
Reviewed-by: https://github.com/gmta
19 changed files with 242 additions and 3 deletions
14
Libraries/LibWeb/SVG/SVGFEImageElement.idl
Normal file
14
Libraries/LibWeb/SVG/SVGFEImageElement.idl
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue