mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
19 lines
752 B
Plaintext
19 lines
752 B
Plaintext
// 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;
|