svnno****@sourc*****
svnno****@sourc*****
2010年 2月 16日 (火) 23:32:05 JST
Revision: 1667 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1667 Author: dhrname Date: 2010-02-16 23:32:05 +0900 (Tue, 16 Feb 2010) Log Message: ----------- SVGAnimatedLengthの引数を除去 Modified Paths: -------------- branches/ufltima/dom/svg.js Modified: branches/ufltima/dom/svg.js =================================================================== --- branches/ufltima/dom/svg.js 2010-02-16 13:06:39 UTC (rev 1666) +++ branches/ufltima/dom/svg.js 2010-02-16 14:32:05 UTC (rev 1667) @@ -328,8 +328,8 @@ this.valueInSpecifiedUnits = this.value / this._n[unitType-1]; }; -function SVGAnimatedLength( /*string or number*/ d, /*float*/ wort, /*float*/ f) { - /*readonly SVGLength*/ this.animVal = this.baseVal = new SVGLength(d, wort, f); +function SVGAnimatedLength() { + /*readonly SVGLength*/ this.animVal = this.baseVal = new SVGLength(); return this; };