svnno****@sourc*****
svnno****@sourc*****
2011年 4月 3日 (日) 23:18:19 JST
Revision: 2554 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2554 Author: dhrname Date: 2011-04-03 23:18:19 +0900 (Sun, 03 Apr 2011) Log Message: ----------- NAIBU._setPaint関数において、numの解放にエラーがあったので修正 Modified Paths: -------------- branches/07x/074/org/w3c/dom/svg.js Modified: branches/07x/074/org/w3c/dom/svg.js =================================================================== --- branches/07x/074/org/w3c/dom/svg.js 2011-04-03 14:08:41 UTC (rev 2553) +++ branches/07x/074/org/w3c/dom/svg.js 2011-04-03 14:18:19 UTC (rev 2554) @@ -2420,7 +2420,7 @@ } else { el.appendChild(fillElement); } - fillElement = fc = num = fillOpacity = null; + fillElement = fc = fillOpacity = null; } else if (fill.uri) { /*以下では、Gradation関連の要素に、イベントを渡すことで、 *この要素の、グラデーション描画を行う @@ -2474,7 +2474,7 @@ if (strokeOpacity < 1) { strokeElement.setAttribute("opacity", strokeOpacity+""); } - fc = num = strokeOpacity = null; + fc = strokeOpacity = null; } strokeElement.setAttribute("miterlimit", style.getPropertyValue("stroke-miterlimit")); strokeElement.setAttribute("joinstyle", style.getPropertyValue("stroke-linejoin")); @@ -2522,7 +2522,7 @@ } else if (disp !== "inline-block") { el.style.display = "inline-block"; } - tod = el = fill = stroke = sp = fp = style = cursor = tar = matrix = vis = disp = null; + tod = el = fill = stroke = sp = fp = style = cursor = tar = matrix = vis = disp = num = null; }; function SVGPathElement() {