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.
17 lines
670 B
Plaintext
17 lines
670 B
Plaintext
// https://drafts.csswg.org/filter-effects-1/#InterfaceSVGFEMorphologyElement
|
|
[Exposed=Window]
|
|
interface SVGFEMorphologyElement : SVGElement {
|
|
|
|
// Morphology Operators
|
|
const unsigned short SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
|
|
const unsigned short SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
|
|
const unsigned short SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
|
|
|
|
readonly attribute SVGAnimatedString in1;
|
|
[ImplementedAs=operator_for_bindings] readonly attribute SVGAnimatedEnumeration operator;
|
|
readonly attribute SVGAnimatedNumber radiusX;
|
|
readonly attribute SVGAnimatedNumber radiusY;
|
|
};
|
|
|
|
SVGFEMorphologyElement includes SVGFilterPrimitiveStandardAttributes;
|