Index: core/svg/SVGComponentTransferFunctionElement.idl |
diff --git a/core/svg/SVGComponentTransferFunctionElement.idl b/core/svg/SVGComponentTransferFunctionElement.idl |
index 1e42835c61018dfda6f01b0edd5c6f5de15237a4..d4a34b873bd040540464333ce0d025ebb44b8579 100644 |
--- a/core/svg/SVGComponentTransferFunctionElement.idl |
+++ b/core/svg/SVGComponentTransferFunctionElement.idl |
@@ -23,23 +23,24 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/filter-effects/#InterfaceSVGComponentTransferFunctionElement |
+ |
[ |
DoNotCheckConstants |
] interface SVGComponentTransferFunctionElement : SVGElement { |
// Component Transfer Types |
- const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; |
- const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; |
- const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; |
- const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; |
- const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; |
- const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] const unsigned short SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; |
- readonly attribute SVGAnimatedEnumeration type; |
- readonly attribute SVGAnimatedNumberList tableValues; |
- readonly attribute SVGAnimatedNumber slope; |
- readonly attribute SVGAnimatedNumber intercept; |
- readonly attribute SVGAnimatedNumber amplitude; |
- readonly attribute SVGAnimatedNumber exponent; |
- readonly attribute SVGAnimatedNumber offset; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedEnumeration type; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumberList tableValues; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumber slope; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumber intercept; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumber amplitude; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumber exponent; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedNumber offset; |
}; |
- |