diff options
Diffstat (limited to 'WebCore/svg/SVGPointList.idl')
-rw-r--r-- | WebCore/svg/SVGPointList.idl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/WebCore/svg/SVGPointList.idl b/WebCore/svg/SVGPointList.idl index 3ac8b1a..cf82dff 100644 --- a/WebCore/svg/SVGPointList.idl +++ b/WebCore/svg/SVGPointList.idl @@ -28,19 +28,19 @@ module svg { interface [Conditional=SVG] SVGPointList { readonly attribute unsigned long numberOfItems; - [Custom] void clear() + [JSCCustom] void clear() raises(DOMException); - [Custom] SVGPoint initialize(in SVGPoint item) + [JSCCustom] SVGPoint initialize(in SVGPoint item) raises(DOMException, SVGException); - [Custom] SVGPoint getItem(in unsigned long index) + [JSCCustom] SVGPoint getItem(in unsigned long index) raises(DOMException); - [Custom] SVGPoint insertItemBefore(in SVGPoint item, in unsigned long index) + [JSCCustom] SVGPoint insertItemBefore(in SVGPoint item, in unsigned long index) raises(DOMException, SVGException); - [Custom] SVGPoint replaceItem(in SVGPoint item, in unsigned long index) + [JSCCustom] SVGPoint replaceItem(in SVGPoint item, in unsigned long index) raises(DOMException, SVGException); - [Custom] SVGPoint removeItem(in unsigned long index) + [JSCCustom] SVGPoint removeItem(in unsigned long index) raises(DOMException); - [Custom] SVGPoint appendItem(in SVGPoint item) + [JSCCustom] SVGPoint appendItem(in SVGPoint item) raises(DOMException, SVGException); }; |