mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
15 lines
534 B
Plaintext
15 lines
534 B
Plaintext
#import <SVG/SVGAnimatedString.idl>
|
|
#import <SVG/SVGElement.idl>
|
|
#import <SVG/SVGFilterPrimitiveStandardAttributes.idl>
|
|
#import <SVG/SVGURIReference.idl>
|
|
|
|
// https://drafts.csswg.org/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;
|