svnno****@sourc*****
svnno****@sourc*****
2011年 3月 28日 (月) 23:39:04 JST
Revision: 2525 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2525 Author: dhrname Date: 2011-03-28 23:39:04 +0900 (Mon, 28 Mar 2011) Log Message: ----------- getFloatValueの変数の解放 Modified Paths: -------------- branches/07x/074/org/w3c/dom/css.js Modified: branches/07x/074/org/w3c/dom/css.js =================================================================== --- branches/07x/074/org/w3c/dom/css.js 2011-03-28 14:33:13 UTC (rev 2524) +++ branches/07x/074/org/w3c/dom/css.js 2011-03-28 14:39:04 UTC (rev 2525) @@ -437,6 +437,7 @@ type = /*CSSPrimitiveValue.CSS_PC*/ 10; } this._value = s * this._n[type-1]; //値はあらかじめ、利用しやすいように変換しておく + n = type = s = null; return (this._value / this._n[unitType-1]); }; /*void*/ CSSPrimitiveValue.prototype.setStringValue = function(/*short*/ stringType, /*string*/ stringValue) {