Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGFEBlendElement.idl
index fc3abe6..05cde55 100644 (file)
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+// http://www.w3.org/TR/filter-effects/#InterfaceSVGFEBlendElement
+
 [
-    DoNotCheckConstants
+    DoNotCheckConstants,
 ] interface SVGFEBlendElement : SVGElement {
+
     // Blend Mode Types
-    const unsigned short SVG_FEBLEND_MODE_UNKNOWN  = 0;
-    const unsigned short SVG_FEBLEND_MODE_NORMAL   = 1;
+    const unsigned short SVG_FEBLEND_MODE_UNKNOWN = 0;
+    const unsigned short SVG_FEBLEND_MODE_NORMAL = 1;
     const unsigned short SVG_FEBLEND_MODE_MULTIPLY = 2;
-    const unsigned short SVG_FEBLEND_MODE_SCREEN   = 3;
-    const unsigned short SVG_FEBLEND_MODE_DARKEN   = 4;
-    const unsigned short SVG_FEBLEND_MODE_LIGHTEN  = 5;
+    const unsigned short SVG_FEBLEND_MODE_SCREEN = 3;
+    const unsigned short SVG_FEBLEND_MODE_DARKEN = 4;
+    const unsigned short SVG_FEBLEND_MODE_LIGHTEN = 5;
 
-    readonly attribute SVGAnimatedString      in1;
-    readonly attribute SVGAnimatedString      in2;
+    readonly attribute SVGAnimatedString in1;
+    readonly attribute SVGAnimatedString in2;
     readonly attribute SVGAnimatedEnumeration mode;
 };