Index: Source/core/svg/SVGAngle.idl |
diff --git a/Source/core/svg/SVGAngle.idl b/Source/core/svg/SVGAngle.idl |
index 665f6ead7fc82e7e1a0ad4bf5c145db11465c09b..423a6dbee524aabb038aa98ad5a1c9d6774bb780 100644 |
--- a/Source/core/svg/SVGAngle.idl |
+++ b/Source/core/svg/SVGAngle.idl |
@@ -20,7 +20,9 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
-interface SVGAngle { |
+[ |
+ StrictTypeChecking, |
+] interface SVGAngle { |
// Angle Unit Types |
const unsigned short SVG_ANGLETYPE_UNKNOWN = 0; |
const unsigned short SVG_ANGLETYPE_UNSPECIFIED = 1; |
@@ -29,13 +31,13 @@ interface SVGAngle { |
const unsigned short SVG_ANGLETYPE_GRAD = 4; |
readonly attribute unsigned short unitType; |
- [StrictTypeChecking] attribute float value; |
- [StrictTypeChecking] attribute float valueInSpecifiedUnits; |
+ attribute float value; |
+ attribute float valueInSpecifiedUnits; |
[TreatNullAs=NullString, RaisesException=Setter] attribute DOMString valueAsString; |
- [StrictTypeChecking, RaisesException] void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits); |
+ [RaisesException] void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits); |
- [StrictTypeChecking, RaisesException] void convertToSpecifiedUnits(unsigned short unitType); |
+ [RaisesException] void convertToSpecifiedUnits(unsigned short unitType); |
}; |