Index: Source/core/svg/SVGComponentTransferFunctionElement.idl |
diff --git a/Source/core/svg/SVGComponentTransferFunctionElement.idl b/Source/core/svg/SVGComponentTransferFunctionElement.idl |
index 1e42835c61018dfda6f01b0edd5c6f5de15237a4..5b8f856b44a37f37202b1b2a25f2f4e8eecd40a0 100644 |
--- a/Source/core/svg/SVGComponentTransferFunctionElement.idl |
+++ b/Source/core/svg/SVGComponentTransferFunctionElement.idl |
@@ -27,19 +27,18 @@ |
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; |
}; |
- |