Index: core/svg/SVGFETurbulenceElement.idl |
diff --git a/core/svg/SVGFETurbulenceElement.idl b/core/svg/SVGFETurbulenceElement.idl |
index b91473980b1d78cea5a5ee74d1656083d8a1b946..0fceef915ba19ad3a2ab658afaacbce348f977ea 100644 |
--- a/core/svg/SVGFETurbulenceElement.idl |
+++ b/core/svg/SVGFETurbulenceElement.idl |
@@ -23,23 +23,25 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/filter-effects/#InterfaceSVGFETurbulenceElement |
+ |
[ |
- DoNotCheckConstants |
+ DoNotCheckConstants, |
] interface SVGFETurbulenceElement : SVGElement { |
// Turbulence Types |
- const unsigned short SVG_TURBULENCE_TYPE_UNKNOWN = 0; |
+ const unsigned short SVG_TURBULENCE_TYPE_UNKNOWN = 0; |
const unsigned short SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; |
- const unsigned short SVG_TURBULENCE_TYPE_TURBULENCE = 2; |
+ const unsigned short SVG_TURBULENCE_TYPE_TURBULENCE = 2; |
// Stitch Options |
- const unsigned short SVG_STITCHTYPE_UNKNOWN = 0; |
- const unsigned short SVG_STITCHTYPE_STITCH = 1; |
+ const unsigned short SVG_STITCHTYPE_UNKNOWN = 0; |
+ const unsigned short SVG_STITCHTYPE_STITCH = 1; |
const unsigned short SVG_STITCHTYPE_NOSTITCH = 2; |
- readonly attribute SVGAnimatedNumber baseFrequencyX; |
- readonly attribute SVGAnimatedNumber baseFrequencyY; |
- readonly attribute SVGAnimatedInteger numOctaves; |
- readonly attribute SVGAnimatedNumber seed; |
+ readonly attribute SVGAnimatedNumber baseFrequencyX; |
+ readonly attribute SVGAnimatedNumber baseFrequencyY; |
+ readonly attribute SVGAnimatedInteger numOctaves; |
+ readonly attribute SVGAnimatedNumber seed; |
readonly attribute SVGAnimatedEnumeration stitchTiles; |
readonly attribute SVGAnimatedEnumeration type; |
}; |