Index: core/svg/SVGCursorElement.idl |
diff --git a/core/svg/SVGCursorElement.idl b/core/svg/SVGCursorElement.idl |
index 627bf196c7363ad2b8b205498e55c2469efaa8bc..56a83ec6f7581b7e92c4efe80613b093470ab6c2 100644 |
--- a/core/svg/SVGCursorElement.idl |
+++ b/core/svg/SVGCursorElement.idl |
@@ -23,13 +23,15 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-// http://www.w3.org/TR/SVG11/interact.html#InterfaceSVGCursorElement |
// http://www.w3.org/TR/SVG2/interact.html#InterfaceSVGCursorElement |
interface SVGCursorElement : SVGElement { |
- readonly attribute SVGAnimatedLength x; |
- readonly attribute SVGAnimatedLength y; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength x; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength y; |
}; |
SVGCursorElement implements SVGURIReference; |
-SVGCursorElement implements SVGTests; // in SVG 1.1 but not SVG 2 |
+ |
+// TODO(philipj): The following was part of SVG 1.1: |
+// http://www.w3.org/TR/SVG11/interact.html#InterfaceSVGCursorElement |
+SVGCursorElement implements SVGTests; |