svnno****@sourc*****
svnno****@sourc*****
2011年 10月 20日 (木) 20:05:41 JST
Revision: 3013 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=3013 Author: dhrname Date: 2011-10-20 20:05:41 +0900 (Thu, 20 Oct 2011) Log Message: ----------- SVGTextPositionElementなどの定数を数値に変換 Modified Paths: -------------- branches/08x/087/org/w3c/dom/svg.js Modified: branches/08x/087/org/w3c/dom/svg.js =================================================================== --- branches/08x/087/org/w3c/dom/svg.js 2011-10-20 11:03:32 UTC (rev 3012) +++ branches/08x/087/org/w3c/dom/svg.js 2011-10-20 11:05:41 UTC (rev 3013) @@ -3915,7 +3915,7 @@ x -= fontSize * 0.5; } while (ti) { - if (ti.nodeType === Node.TEXT_NODE) { + if (ti.nodeType === /*Node.TEXT_NODE*/ 3) { tt = ti._tars; /*tspan要素のx属性で指定された座標の個数よりも、文字数が多い場合は、祖先(親)のx属性を *使う。また、属性が指定されていないときも同様に祖先や親を使う。 @@ -4128,7 +4128,7 @@ this.addEventListener("DOMNodeInserted", function(evt){ if (evt.eventPhase === /*Event.BUBBLING_PHASE*/ 3) { var tar = evt.target; - if (tar.nodeType !== Node.TEXT_NODE) { + if (tar.nodeType !== /*Node.TEXT_NODE*/ 3) { tar._list = void 0; evt.currentTarget._list = null; }