summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPoint.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGPoint.idl')
-rw-r--r--WebCore/svg/SVGPoint.idl6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/svg/SVGPoint.idl b/WebCore/svg/SVGPoint.idl
index 46ca671..19c6292 100644
--- a/WebCore/svg/SVGPoint.idl
+++ b/WebCore/svg/SVGPoint.idl
@@ -22,9 +22,9 @@
module svg {
- interface [Conditional=SVG, PODType=FloatPoint] SVGPoint {
- attribute float x;
- attribute float y;
+ interface [Conditional=SVG] SVGPoint {
+ attribute [StrictTypeChecking] float x;
+ attribute [StrictTypeChecking] float y;
SVGPoint matrixTransform(in SVGMatrix matrix);
};