Index: Source/core/svg/SVGPathSegList.idl |
diff --git a/Source/core/svg/SVGPathSegList.idl b/Source/core/svg/SVGPathSegList.idl |
index 33f734e7e631f02b2a700c87972fbfa5c5c2542b..5214f9d22916874d86b408c3c9a921d402544b61 100644 |
--- a/Source/core/svg/SVGPathSegList.idl |
+++ b/Source/core/svg/SVGPathSegList.idl |
@@ -24,15 +24,16 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-interface SVGPathSegList { |
+[ |
+ StrictTypeChecking, |
+] interface SVGPathSegList { |
readonly attribute unsigned long numberOfItems; |
[RaisesException] void clear(); |
- [StrictTypeChecking, RaisesException] SVGPathSeg initialize(SVGPathSeg newItem); |
- [StrictTypeChecking, RaisesException] SVGPathSeg getItem(unsigned long index); |
- [StrictTypeChecking, RaisesException] SVGPathSeg insertItemBefore(SVGPathSeg newItem, unsigned long index); |
- [StrictTypeChecking, RaisesException] SVGPathSeg replaceItem(SVGPathSeg newItem, unsigned long index); |
- [StrictTypeChecking, RaisesException] SVGPathSeg removeItem(unsigned long index); |
- [StrictTypeChecking, RaisesException] SVGPathSeg appendItem(SVGPathSeg newItem); |
+ [RaisesException] SVGPathSeg initialize(SVGPathSeg newItem); |
+ [RaisesException] SVGPathSeg getItem(unsigned long index); |
+ [RaisesException] SVGPathSeg insertItemBefore(SVGPathSeg newItem, unsigned long index); |
+ [RaisesException] SVGPathSeg replaceItem(SVGPathSeg newItem, unsigned long index); |
+ [RaisesException] SVGPathSeg removeItem(unsigned long index); |
+ [RaisesException] SVGPathSeg appendItem(SVGPathSeg newItem); |
}; |
- |