summaryrefslogtreecommitdiff
path: root/Source/WebCore/svg/SVGPointList.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/svg/SVGPointList.idl')
-rw-r--r--Source/WebCore/svg/SVGPointList.idl19
1 files changed, 8 insertions, 11 deletions
diff --git a/Source/WebCore/svg/SVGPointList.idl b/Source/WebCore/svg/SVGPointList.idl
index ff89c53f6..0e1597fb5 100644
--- a/Source/WebCore/svg/SVGPointList.idl
+++ b/Source/WebCore/svg/SVGPointList.idl
@@ -23,17 +23,14 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-[
- Conditional=SVG,
-] interface SVGPointList {
+interface SVGPointList {
readonly attribute unsigned long numberOfItems;
- [RaisesException] void clear();
- [StrictTypeChecking, RaisesException] SVGPoint initialize(SVGPoint item);
- [StrictTypeChecking, RaisesException] SVGPoint getItem(unsigned long index);
- [StrictTypeChecking, RaisesException] SVGPoint insertItemBefore(SVGPoint item, unsigned long index);
- [StrictTypeChecking, RaisesException] SVGPoint replaceItem(SVGPoint item, unsigned long index);
- [StrictTypeChecking, RaisesException] SVGPoint removeItem(unsigned long index);
- [StrictTypeChecking, RaisesException] SVGPoint appendItem(SVGPoint item);
+ [MayThrowException] void clear();
+ [MayThrowException] SVGPoint initialize(SVGPoint item);
+ [MayThrowException] SVGPoint getItem(unsigned long index);
+ [MayThrowException] SVGPoint insertItemBefore(SVGPoint item, unsigned long index);
+ [MayThrowException] SVGPoint replaceItem(SVGPoint item, unsigned long index);
+ [MayThrowException] SVGPoint removeItem(unsigned long index);
+ [MayThrowException] SVGPoint appendItem(SVGPoint item);
};
-