svnno****@sourc*****
svnno****@sourc*****
2011年 4月 8日 (金) 21:10:09 JST
Revision: 2573
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2573
Author: dhrname
Date: 2011-04-08 21:10:09 +0900 (Fri, 08 Apr 2011)
Log Message:
-----------
SVGAngleのvalueAsStringプロパティのつづりにミスがあったので修正
Modified Paths:
--------------
branches/07x/075/org/w3c/dom/svg.js
Modified: branches/07x/075/org/w3c/dom/svg.js
===================================================================
--- branches/07x/075/org/w3c/dom/svg.js 2011-04-08 11:49:00 UTC (rev 2572)
+++ branches/07x/075/org/w3c/dom/svg.js 2011-04-08 12:10:09 UTC (rev 2573)
@@ -667,7 +667,7 @@
this.unitType = unitType;
this.value = valueInSpecifiedUnits * n;
this.valueInSpecifiedUnits = valueInSpecifiedUnits;
- this.valuAsString = valueInSpecifiedUnits + _s;
+ this.valueAsString = valueInSpecifiedUnits + _s;
n = _s = null;
//raises( DOMException );
},