Index: core/svg/SVGCircleElement.idl |
diff --git a/core/svg/SVGCircleElement.idl b/core/svg/SVGCircleElement.idl |
index 19630dd5181733879cf403aa2719539a27682b7b..0479e267ac1f7bc94120170dea3d024647e010b5 100644 |
--- a/core/svg/SVGCircleElement.idl |
+++ b/core/svg/SVGCircleElement.idl |
@@ -24,9 +24,10 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/SVG2/shapes.html#InterfaceSVGCircleElement |
+ |
interface SVGCircleElement : SVGGeometryElement { |
- readonly attribute SVGAnimatedLength cx; |
- readonly attribute SVGAnimatedLength cy; |
- readonly attribute SVGAnimatedLength r; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength cx; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength cy; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength r; |
}; |
- |