summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGLengthList.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGLengthList.idl')
-rw-r--r--WebCore/svg/SVGLengthList.idl12
1 files changed, 6 insertions, 6 deletions
diff --git a/WebCore/svg/SVGLengthList.idl b/WebCore/svg/SVGLengthList.idl
index a5771d2..e23f8af 100644
--- a/WebCore/svg/SVGLengthList.idl
+++ b/WebCore/svg/SVGLengthList.idl
@@ -31,17 +31,17 @@ module svg {
void clear()
raises(DOMException);
- SVGLength initialize(in SVGLength item)
+ [StrictTypeChecking, RequiresAllArguments=Raise] SVGLength initialize(in SVGLength item)
raises(DOMException, SVGException);
- SVGLength getItem(in unsigned long index)
+ [StrictTypeChecking, RequiresAllArguments=Raise] SVGLength getItem(in unsigned long index)
raises(DOMException);
- SVGLength insertItemBefore(in SVGLength item, in unsigned long index)
+ [StrictTypeChecking, RequiresAllArguments=Raise] SVGLength insertItemBefore(in SVGLength item, in unsigned long index)
raises(DOMException, SVGException);
- SVGLength replaceItem(in SVGLength item, in unsigned long index)
+ [StrictTypeChecking, RequiresAllArguments=Raise] SVGLength replaceItem(in SVGLength item, in unsigned long index)
raises(DOMException, SVGException);
- SVGLength removeItem(in unsigned long index)
+ [StrictTypeChecking, RequiresAllArguments=Raise] SVGLength removeItem(in unsigned long index)
raises(DOMException);
- SVGLength appendItem(in SVGLength item)
+ [StrictTypeChecking, RequiresAllArguments=Raise] SVGLength appendItem(in SVGLength item)
raises(DOMException, SVGException);
};