Index: core/svg/SVGFEColorMatrixElement.idl |
diff --git a/core/svg/SVGFEColorMatrixElement.idl b/core/svg/SVGFEColorMatrixElement.idl |
index 4d5504b76a64a5ef9ad1eb03580bd1ce5be737a6..fa9c032c48a44a020765966c8af0e86161744c18 100644 |
--- a/core/svg/SVGFEColorMatrixElement.idl |
+++ b/core/svg/SVGFEColorMatrixElement.idl |
@@ -23,19 +23,21 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/filter-effects/#InterfaceSVGFEColorMatrixElement |
+ |
[ |
- DoNotCheckConstants |
+ DoNotCheckConstants, |
] interface SVGFEColorMatrixElement : SVGElement { |
// Color Matrix Types |
- const unsigned short SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; |
- const unsigned short SVG_FECOLORMATRIX_TYPE_MATRIX = 1; |
- const unsigned short SVG_FECOLORMATRIX_TYPE_SATURATE = 2; |
- const unsigned short SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; |
+ const unsigned short SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; |
+ const unsigned short SVG_FECOLORMATRIX_TYPE_MATRIX = 1; |
+ const unsigned short SVG_FECOLORMATRIX_TYPE_SATURATE = 2; |
+ const unsigned short SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; |
const unsigned short SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; |
- readonly attribute SVGAnimatedString in1; |
+ readonly attribute SVGAnimatedString in1; |
readonly attribute SVGAnimatedEnumeration type; |
- readonly attribute SVGAnimatedNumberList values; |
+ readonly attribute SVGAnimatedNumberList values; |
}; |
SVGFEColorMatrixElement implements SVGFilterPrimitiveStandardAttributes; |