svnno****@sourc*****
svnno****@sourc*****
2009年 9月 24日 (木) 23:03:22 JST
Revision: 1281
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1281
Author: dhrname
Date: 2009-09-24 23:03:22 +0900 (Thu, 24 Sep 2009)
Log Message:
-----------
SVGCircleElementの実装
Modified Paths:
--------------
branches/DOM/org/w3c/dom/svg.js
Modified: branches/DOM/org/w3c/dom/svg.js
===================================================================
--- branches/DOM/org/w3c/dom/svg.js 2009-09-24 13:57:32 UTC (rev 1280)
+++ branches/DOM/org/w3c/dom/svg.js 2009-09-24 14:03:22 UTC (rev 1281)
@@ -2927,18 +2927,15 @@
SVGRectElement.constructor = SVGElement;
SVGRectElement.prototype = new SVGElement();
-function SVGCircleElement :
- SVGElement,
- SVGTests,
- SVGLangSpace,
- SVGExternalResourcesRequired,
- SVGStylable,
- SVGTransformable,
- events::EventTarget {
- /*readonly SVGAnimatedLength cx;
- /*readonly SVGAnimatedLength cy;
- /*readonly SVGAnimatedLength r;
- };
+function SVGCircleElement() {
+ /*readonly SVGAnimatedLength*/ this.cx = new SVGAnimatedLength(0);
+ /*readonly SVGAnimatedLength*/ this.cy = new SVGAnimatedLength(0);
+ /*readonly SVGAnimatedLength*/ this.r = new SVGAnimatedLength(0);
+ return this;
+};
+SVGCircleElement.constructor = SVGElement;
+SVGCircleElement.prototype = new SVGElement();
+
function SVGEllipseElement :
SVGElement,
SVGTests,