summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPathSegList.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGPathSegList.idl')
-rw-r--r--WebCore/svg/SVGPathSegList.idl14
1 files changed, 7 insertions, 7 deletions
diff --git a/WebCore/svg/SVGPathSegList.idl b/WebCore/svg/SVGPathSegList.idl
index f55167e..8c67bd3 100644
--- a/WebCore/svg/SVGPathSegList.idl
+++ b/WebCore/svg/SVGPathSegList.idl
@@ -29,19 +29,19 @@ module svg {
interface [Conditional=SVG] SVGPathSegList {
readonly attribute unsigned long numberOfItems;
- [Custom] void clear()
+ [JSCCustom] void clear()
raises(DOMException);
- [Custom] SVGPathSeg initialize(in SVGPathSeg newItem)
+ [JSCCustom] SVGPathSeg initialize(in SVGPathSeg newItem)
raises(DOMException, SVGException);
- [Custom] SVGPathSeg getItem(in unsigned long index)
+ [JSCCustom] SVGPathSeg getItem(in unsigned long index)
raises(DOMException);
- [Custom] SVGPathSeg insertItemBefore(in SVGPathSeg newItem, in unsigned long index)
+ [JSCCustom] SVGPathSeg insertItemBefore(in SVGPathSeg newItem, in unsigned long index)
raises(DOMException, SVGException);
- [Custom] SVGPathSeg replaceItem(in SVGPathSeg newItem, in unsigned long index)
+ [JSCCustom] SVGPathSeg replaceItem(in SVGPathSeg newItem, in unsigned long index)
raises(DOMException, SVGException);
- [Custom] SVGPathSeg removeItem(in unsigned long index)
+ [JSCCustom] SVGPathSeg removeItem(in unsigned long index)
raises(DOMException);
- [Custom] SVGPathSeg appendItem(in SVGPathSeg newItem)
+ [JSCCustom] SVGPathSeg appendItem(in SVGPathSeg newItem)
raises(DOMException, SVGException);
};