diff options
Diffstat (limited to 'Source/WebCore/svg/SVGPoint.idl')
-rw-r--r-- | Source/WebCore/svg/SVGPoint.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WebCore/svg/SVGPoint.idl b/Source/WebCore/svg/SVGPoint.idl index 48e6756f5..b4ced4d41 100644 --- a/Source/WebCore/svg/SVGPoint.idl +++ b/Source/WebCore/svg/SVGPoint.idl @@ -21,11 +21,11 @@ */ [ - Conditional=SVG, + SkipVTableValidation ] interface SVGPoint { - [StrictTypeChecking] attribute float x; - [StrictTypeChecking] attribute float y; + [SetterMayThrowException] attribute unrestricted float x; + [SetterMayThrowException] attribute unrestricted float y; - [StrictTypeChecking] SVGPoint matrixTransform(SVGMatrix matrix); + [MayThrowException, NewObject] SVGPoint matrixTransform(SVGMatrix matrix); }; |