| Index: core/svg/SVGFEConvolveMatrixElement.idl
|
| diff --git a/core/svg/SVGFEConvolveMatrixElement.idl b/core/svg/SVGFEConvolveMatrixElement.idl
|
| index a1db16d26d07c2bfced059b6280ea5301d7d6225..0c9edfd820fa03d9e134220d0003affa2b7c91b3 100644
|
| --- a/core/svg/SVGFEConvolveMatrixElement.idl
|
| +++ b/core/svg/SVGFEConvolveMatrixElement.idl
|
| @@ -29,27 +29,27 @@
|
| DoNotCheckConstants,
|
| ] interface SVGFEConvolveMatrixElement : SVGElement {
|
| // Edge Mode Values
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_EDGEMODE_UNKNOWN = 0;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_EDGEMODE_DUPLICATE = 1;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_EDGEMODE_WRAP = 2;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_EDGEMODE_NONE = 3;
|
| + [MeasureAs=SVG1DOMFilter] const unsigned short SVG_EDGEMODE_UNKNOWN = 0;
|
| + [MeasureAs=SVG1DOMFilter] const unsigned short SVG_EDGEMODE_DUPLICATE = 1;
|
| + [MeasureAs=SVG1DOMFilter] const unsigned short SVG_EDGEMODE_WRAP = 2;
|
| + [MeasureAs=SVG1DOMFilter] const unsigned short SVG_EDGEMODE_NONE = 3;
|
|
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedString in1;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedInteger orderX;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedInteger orderY;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumberList kernelMatrix;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumber divisor;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumber bias;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedInteger targetX;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedInteger targetY;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedEnumeration edgeMode;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumber kernelUnitLengthX;
|
| - [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumber kernelUnitLengthY;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedString in1;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedInteger orderX;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedInteger orderY;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedNumberList kernelMatrix;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedNumber divisor;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedNumber bias;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedInteger targetX;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedInteger targetY;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedEnumeration edgeMode;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedNumber kernelUnitLengthX;
|
| + [MeasureAs=SVG1DOMFilter] readonly attribute SVGAnimatedNumber kernelUnitLengthY;
|
|
|
| // TODO(philipj): The following was part of SVG 1.1:
|
| // http://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEConvolveMatrixElement
|
| // https://www.w3.org/Bugs/Public/show_bug.cgi?id=28703
|
| - [RuntimeEnabled=SVG1DOM, Measure] readonly attribute SVGAnimatedBoolean preserveAlpha;
|
| + [Measure] readonly attribute SVGAnimatedBoolean preserveAlpha;
|
| };
|
|
|
| SVGFEConvolveMatrixElement implements SVGFilterPrimitiveStandardAttributes;
|
|
|