diff options
Diffstat (limited to 'Source/WebCore/svg/SVGAnimatedNumber.idl')
-rw-r--r-- | Source/WebCore/svg/SVGAnimatedNumber.idl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/WebCore/svg/SVGAnimatedNumber.idl b/Source/WebCore/svg/SVGAnimatedNumber.idl index c5e386346..e4cd9f407 100644 --- a/Source/WebCore/svg/SVGAnimatedNumber.idl +++ b/Source/WebCore/svg/SVGAnimatedNumber.idl @@ -25,10 +25,9 @@ */ [ - Conditional=SVG, SkipVTableValidation ] interface SVGAnimatedNumber { - [StrictTypeChecking, SetterRaisesException] attribute float baseVal; - readonly attribute float animVal; + [SetterMayThrowException] attribute unrestricted float baseVal; + readonly attribute unrestricted float animVal; }; |