svnno****@sourc*****
svnno****@sourc*****
2010年 12月 5日 (日) 23:04:36 JST
Revision: 2208 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2208 Author: dhrname Date: 2010-12-05 23:04:36 +0900 (Sun, 05 Dec 2010) Log Message: ----------- CSSStyleDeclarationのgetPropertyCSSValueメソッドの変数を解放するようにした Modified Paths: -------------- branches/06x/065/org/w3c/dom/css.js Modified: branches/06x/065/org/w3c/dom/css.js =================================================================== --- branches/06x/065/org/w3c/dom/css.js 2010-12-04 14:00:33 UTC (rev 2207) +++ branches/06x/065/org/w3c/dom/css.js 2010-12-05 14:04:36 UTC (rev 2208) @@ -216,9 +216,11 @@ var ti = this._list[i], tc = ti.cssText; if (tc.indexOf(propertyName) > -1) { //プロパティ名に合致するCSSValueオブジェクトが見つかった場合 ti._empercents = this._list._fontSize; + propertyName = null; return ti; } } + propertyName = null; return null; }, /*removePropertyメソッド