Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGFEConvolveMatrixElement.idl
index b759230..ea35c38 100644 (file)
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+// http://www.w3.org/TR/SVG11/filters.html#InterfaceSVGFEConvolveMatrixElement
+// http://www.w3.org/TR/filter-effects/#InterfaceSVGFEConvolveMatrixElement
+
 [
-    DoNotCheckConstants
+    DoNotCheckConstants,
 ] interface SVGFEConvolveMatrixElement : SVGElement {
     // Edge Mode Values
-    const unsigned short SVG_EDGEMODE_UNKNOWN   = 0;
+    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;
+    const unsigned short SVG_EDGEMODE_WRAP = 2;
+    const unsigned short SVG_EDGEMODE_NONE = 3;
 
-    readonly attribute SVGAnimatedString      in1;
-    readonly attribute SVGAnimatedInteger     orderX;
-    readonly attribute SVGAnimatedInteger     orderY;
-    readonly attribute SVGAnimatedNumberList  kernelMatrix;
-    readonly attribute SVGAnimatedNumber      divisor;
-    readonly attribute SVGAnimatedNumber      bias;
-    readonly attribute SVGAnimatedInteger     targetX;
-    readonly attribute SVGAnimatedInteger     targetY;
+    readonly attribute SVGAnimatedString in1;
+    readonly attribute SVGAnimatedInteger orderX;
+    readonly attribute SVGAnimatedInteger orderY;
+    readonly attribute SVGAnimatedNumberList kernelMatrix;
+    readonly attribute SVGAnimatedNumber divisor;
+    readonly attribute SVGAnimatedNumber bias;
+    readonly attribute SVGAnimatedInteger targetX;
+    readonly attribute SVGAnimatedInteger targetY;
     readonly attribute SVGAnimatedEnumeration edgeMode;
-    readonly attribute SVGAnimatedNumber      kernelUnitLengthX;
-    readonly attribute SVGAnimatedNumber      kernelUnitLengthY;
-    readonly attribute SVGAnimatedBoolean     preserveAlpha;
+    readonly attribute SVGAnimatedNumber kernelUnitLengthX;
+    readonly attribute SVGAnimatedNumber kernelUnitLengthY;
+    readonly attribute SVGAnimatedBoolean preserveAlpha; // in SVG 1.1, removed in SVG 2
 };
 
 SVGFEConvolveMatrixElement implements SVGFilterPrimitiveStandardAttributes;