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.
20 lines
740 B
Plaintext
20 lines
740 B
Plaintext
// https://drafts.csswg.org/filter-effects-1/#InterfaceSVGFEGaussianBlurElement
|
|
[Exposed=Window]
|
|
interface SVGFEGaussianBlurElement : SVGElement {
|
|
|
|
// Edge Mode Values
|
|
const unsigned short SVG_EDGEMODE_UNKNOWN = 0;
|
|
const unsigned short SVG_EDGEMODE_DUPLICATE = 1;
|
|
const unsigned short SVG_EDGEMODE_WRAP = 2;
|
|
const unsigned short SVG_EDGEMODE_NONE = 3;
|
|
|
|
readonly attribute SVGAnimatedString in1;
|
|
readonly attribute SVGAnimatedNumber stdDeviationX;
|
|
readonly attribute SVGAnimatedNumber stdDeviationY;
|
|
readonly attribute SVGAnimatedEnumeration edgeMode;
|
|
|
|
[FIXME] void setStdDeviation(float stdDeviationX, float stdDeviationY);
|
|
};
|
|
|
|
SVGFEGaussianBlurElement includes SVGFilterPrimitiveStandardAttributes;
|