svnno****@sourc*****
svnno****@sourc*****
2011年 1月 11日 (火) 22:52:35 JST
Revision: 2290
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2290
Author: dhrname
Date: 2011-01-11 22:52:35 +0900 (Tue, 11 Jan 2011)
Log Message:
-----------
1, NAIBU._setPaint関数における変数の解放
2, SVGLengthのnewValueSpecifiedUnitsメソッドにスペルミスがあったので、修正
Modified Paths:
--------------
branches/06x/068/org/w3c/dom/svg.js
Modified: branches/06x/068/org/w3c/dom/svg.js
===================================================================
--- branches/06x/068/org/w3c/dom/svg.js 2011-01-10 13:52:02 UTC (rev 2289)
+++ branches/06x/068/org/w3c/dom/svg.js 2011-01-11 13:52:35 UTC (rev 2290)
@@ -549,7 +549,7 @@
this.unitType = unitType;
this.value = valueInSpecifiedUnits * n;
this.valueInSpecifiedUnits = valueInSpecifiedUnits;
- this.valuAsString = valueInSpecifiedUnits + _s;
+ this.valueAsString = valueInSpecifiedUnits + _s;
n = _s = null;
},
/*convertToSpecifiedUnitsメソッド
@@ -2216,7 +2216,7 @@
} else {
el.appendChild(fillElement);
}
- fc = fillOpacity = null;
+ fillElement = fc = num = fillOpacity = null;
} else if (fill.uri) {
/*以下では、Gradation関連の要素に、イベントを渡すことで、
*この要素の、グラデーション描画を行う
@@ -2297,7 +2297,7 @@
} else {
el.appendChild(strokeElement);
}
- tsd = null;
+ strokeElement = tsd = null;
} else {
el.stroked = "false";
}