Index: core/svg/SVGPoint.idl |
diff --git a/core/svg/SVGPoint.idl b/core/svg/SVGPoint.idl |
index bb30f3deb85ac789af5d2f88831d2eb1ce37d9db..7097dc872937c8bd23c128763151e62b1a738516 100644 |
--- a/core/svg/SVGPoint.idl |
+++ b/core/svg/SVGPoint.idl |
@@ -20,13 +20,17 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
+// http://www.w3.org/TR/SVG11/coords.html#InterfaceSVGPoint |
+ |
+// TODO(philipj): SVGPoint is gone from SVG 2, replaced by DOMPoint. |
[ |
ImplementedAs=SVGPointTearOff, |
SetWrapperReferenceTo(SVGElement contextElement), |
TypeChecking=Interface, |
+ WillBeGarbageCollected, |
] interface SVGPoint { |
- [RaisesException=Setter] attribute float x; |
- [RaisesException=Setter] attribute float y; |
+ [RaisesException=Setter] attribute unrestricted float x; |
+ [RaisesException=Setter] attribute unrestricted float y; |
[MeasureAs=SVGPointMatrixTransform] SVGPoint matrixTransform(SVGMatrix matrix); |
}; |