summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl')
-rw-r--r--WebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl12
1 files changed, 4 insertions, 8 deletions
diff --git a/WebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl b/WebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl
index 9b09222..1fbb461 100644
--- a/WebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl
+++ b/WebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl
@@ -27,14 +27,10 @@
module svg {
interface [Conditional=SVG] SVGPathSegCurvetoQuadraticAbs : SVGPathSeg {
- attribute float x
- /*setter raises(DOMException)*/;
- attribute float y
- /*setter raises(DOMException)*/;
- attribute float x1
- /*setter raises(DOMException)*/;
- attribute float y1
- /*setter raises(DOMException)*/;
+ attribute [StrictTypeChecking] float x;
+ attribute [StrictTypeChecking] float y;
+ attribute [StrictTypeChecking] float x1;
+ attribute [StrictTypeChecking] float y1;
};
}