summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPathSegArcRel.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGPathSegArcRel.idl')
-rw-r--r--WebCore/svg/SVGPathSegArcRel.idl21
1 files changed, 7 insertions, 14 deletions
diff --git a/WebCore/svg/SVGPathSegArcRel.idl b/WebCore/svg/SVGPathSegArcRel.idl
index 8b08d68..78852d8 100644
--- a/WebCore/svg/SVGPathSegArcRel.idl
+++ b/WebCore/svg/SVGPathSegArcRel.idl
@@ -27,20 +27,13 @@
module svg {
interface [Conditional=SVG] SVGPathSegArcRel : SVGPathSeg {
- attribute float x
- /*setter raises(DOMException)*/;
- attribute float y
- /*setter raises(DOMException)*/;
- attribute float r1
- /*setter raises(DOMException)*/;
- attribute float r2
- /*setter raises(DOMException)*/;
- attribute float angle
- /*setter raises(DOMException)*/;
- attribute boolean largeArcFlag
- /*setter raises(DOMException)*/;
- attribute boolean sweepFlag
- /*setter raises(DOMException)*/;
+ attribute [StrictTypeChecking] float x;
+ attribute [StrictTypeChecking] float y;
+ attribute [StrictTypeChecking] float r1;
+ attribute [StrictTypeChecking] float r2;
+ attribute [StrictTypeChecking] float angle;
+ attribute [StrictTypeChecking] boolean largeArcFlag;
+ attribute [StrictTypeChecking] boolean sweepFlag;
};
}