Index: Source/core/svg/SVGPointList.idl |
diff --git a/Source/core/svg/SVGPointList.idl b/Source/core/svg/SVGPointList.idl |
index f31ea737d63d80a325d33f00149c4e5ab05b49a9..51aba12067587d56ded8762d260adccd387168c1 100644 |
--- a/Source/core/svg/SVGPointList.idl |
+++ b/Source/core/svg/SVGPointList.idl |
@@ -25,16 +25,16 @@ |
[ |
ImplementedAs=SVGPointListTearOff, |
- SetWrapperReferenceTo(SVGElement contextElement) |
+ SetWrapperReferenceTo(SVGElement contextElement), |
+ StrictTypeChecking, |
] interface SVGPointList { |
readonly attribute unsigned long numberOfItems; |
[RaisesException] void clear(); |
- [StrictTypeChecking, RaisesException] SVGPoint initialize(SVGPoint item); |
- [StrictTypeChecking, RaisesException] SVGPoint getItem(unsigned long index); |
- [StrictTypeChecking, RaisesException] SVGPoint insertItemBefore(SVGPoint item, unsigned long index); |
- [StrictTypeChecking, RaisesException] SVGPoint replaceItem(SVGPoint item, unsigned long index); |
- [StrictTypeChecking, RaisesException] SVGPoint removeItem(unsigned long index); |
- [StrictTypeChecking, RaisesException] SVGPoint appendItem(SVGPoint item); |
+ [RaisesException] SVGPoint initialize(SVGPoint item); |
+ [RaisesException] SVGPoint getItem(unsigned long index); |
+ [RaisesException] SVGPoint insertItemBefore(SVGPoint item, unsigned long index); |
+ [RaisesException] SVGPoint replaceItem(SVGPoint item, unsigned long index); |
+ [RaisesException] SVGPoint removeItem(unsigned long index); |
+ [RaisesException] SVGPoint appendItem(SVGPoint item); |
}; |
- |