mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
25 lines
950 B
Plaintext
25 lines
950 B
Plaintext
#import <SVG/SVGAnimatedEnumeration.idl>
|
|
#import <SVG/SVGAnimatedNumber.idl>
|
|
#import <SVG/SVGAnimatedString.idl>
|
|
#import <SVG/SVGElement.idl>
|
|
#import <SVG/SVGFilterPrimitiveStandardAttributes.idl>
|
|
|
|
// https://drafts.csswg.org/filter-effects-1/#InterfaceSVGFEDisplacementMapElement
|
|
[Exposed=Window]
|
|
interface SVGFEDisplacementMapElement : SVGElement {
|
|
// Channel Selectors
|
|
const unsigned short SVG_CHANNEL_UNKNOWN = 0;
|
|
const unsigned short SVG_CHANNEL_R = 1;
|
|
const unsigned short SVG_CHANNEL_G = 2;
|
|
const unsigned short SVG_CHANNEL_B = 3;
|
|
const unsigned short SVG_CHANNEL_A = 4;
|
|
|
|
readonly attribute SVGAnimatedString in1;
|
|
readonly attribute SVGAnimatedString in2;
|
|
readonly attribute SVGAnimatedNumber scale;
|
|
readonly attribute SVGAnimatedEnumeration xChannelSelector;
|
|
readonly attribute SVGAnimatedEnumeration yChannelSelector;
|
|
};
|
|
|
|
SVGFEDisplacementMapElement includes SVGFilterPrimitiveStandardAttributes;
|