diff options
Diffstat (limited to 'Source/WebCore/svg/SVGRect.idl')
-rw-r--r-- | Source/WebCore/svg/SVGRect.idl | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Source/WebCore/svg/SVGRect.idl b/Source/WebCore/svg/SVGRect.idl index 22646187b..395a7f5be 100644 --- a/Source/WebCore/svg/SVGRect.idl +++ b/Source/WebCore/svg/SVGRect.idl @@ -20,12 +20,10 @@ * Boston, MA 02110-1301, USA. */ -[ - Conditional=SVG -] interface SVGRect { - [StrictTypeChecking] attribute float x; - [StrictTypeChecking] attribute float y; - [StrictTypeChecking] attribute float width; - [StrictTypeChecking] attribute float height; +interface SVGRect { + [SetterMayThrowException] attribute unrestricted float x; + [SetterMayThrowException] attribute unrestricted float y; + [SetterMayThrowException] attribute unrestricted float width; + [SetterMayThrowException] attribute unrestricted float height; }; |