From 8f72e70a9fd78eec56623b3a62e68f16b7b27e28 Mon Sep 17 00:00:00 2001 From: Feng Qian <> Date: Fri, 10 Apr 2009 18:11:29 -0700 Subject: AI 145796: Land the WebKit merge @r42026. Automated import of CL 145796 --- WebCore/svg/SVGTransformList.idl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'WebCore/svg/SVGTransformList.idl') diff --git a/WebCore/svg/SVGTransformList.idl b/WebCore/svg/SVGTransformList.idl index 67968ff..8c9c86e 100644 --- a/WebCore/svg/SVGTransformList.idl +++ b/WebCore/svg/SVGTransformList.idl @@ -29,19 +29,19 @@ module svg { interface [Conditional=SVG] SVGTransformList { readonly attribute unsigned long numberOfItems; - [Custom] void clear() + [JSCCustom] void clear() raises(DOMException); - [Custom] SVGTransform initialize(in SVGTransform item) + [JSCCustom] SVGTransform initialize(in SVGTransform item) raises(DOMException, SVGException); - [Custom] SVGTransform getItem(in unsigned long index) + [JSCCustom] SVGTransform getItem(in unsigned long index) raises(DOMException); - [Custom] SVGTransform insertItemBefore(in SVGTransform item, in unsigned long index) + [JSCCustom] SVGTransform insertItemBefore(in SVGTransform item, in unsigned long index) raises(DOMException, SVGException); - [Custom] SVGTransform replaceItem(in SVGTransform item, in unsigned long index) + [JSCCustom] SVGTransform replaceItem(in SVGTransform item, in unsigned long index) raises(DOMException, SVGException); - [Custom] SVGTransform removeItem(in unsigned long index) + [JSCCustom] SVGTransform removeItem(in unsigned long index) raises(DOMException); - [Custom] SVGTransform appendItem(in SVGTransform item) + [JSCCustom] SVGTransform appendItem(in SVGTransform item) raises(DOMException, SVGException); SVGTransform createSVGTransformFromMatrix(in SVGMatrix matrix); SVGTransform consolidate(); -- cgit v1.1