Index: core/svg/SVGRadialGradientElement.idl |
diff --git a/core/svg/SVGRadialGradientElement.idl b/core/svg/SVGRadialGradientElement.idl |
index dfae5fd85691f00ea692b89e3b036542b4a8cd43..71bd0bd9f1e9470aa5c347e05c74f78f3fd853d8 100644 |
--- a/core/svg/SVGRadialGradientElement.idl |
+++ b/core/svg/SVGRadialGradientElement.idl |
@@ -23,12 +23,13 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/SVG2/pservers.html#InterfaceSVGRadialGradientElement |
+ |
interface SVGRadialGradientElement : SVGGradientElement { |
- readonly attribute SVGAnimatedLength cx; |
- readonly attribute SVGAnimatedLength cy; |
- readonly attribute SVGAnimatedLength r; |
- readonly attribute SVGAnimatedLength fx; |
- readonly attribute SVGAnimatedLength fy; |
- readonly attribute SVGAnimatedLength fr; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength cx; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength cy; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength r; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength fx; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength fy; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength fr; |
}; |
- |