summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGPoint.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGPoint.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGPoint.idl13
1 files changed, 8 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGPoint.idl b/chromium/third_party/WebKit/Source/core/svg/SVGPoint.idl
index d8945c9ed72..a1923805029 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGPoint.idl
+++ b/chromium/third_party/WebKit/Source/core/svg/SVGPoint.idl
@@ -20,10 +20,13 @@
* Boston, MA 02110-1301, USA.
*/
-interface SVGPoint {
- [StrictTypeChecking] attribute float x;
- [StrictTypeChecking] attribute float y;
+[
+ ImplementedAs=SVGPointTearOff,
+ SetWrapperReferenceTo(SVGElement contextElement),
+ TypeChecking=Interface|Nullable,
+] interface SVGPoint {
+ [RaisesException=Setter] attribute float x;
+ [RaisesException=Setter] attribute float y;
- [MeasureAs=SVGPointMatrixTransform, StrictTypeChecking] SVGPoint matrixTransform(SVGMatrix matrix);
+ [MeasureAs=SVGPointMatrixTransform] SVGPoint matrixTransform(SVGMatrix matrix);
};
-