svnno****@sourc*****
svnno****@sourc*****
2011年 11月 5日 (土) 23:03:54 JST
Revision: 3070 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=3070 Author: dhrname Date: 2011-11-05 23:03:54 +0900 (Sat, 05 Nov 2011) Log Message: ----------- _currentStyleの記述を不要なので削除 Modified Paths: -------------- branches/08x/089/org/w3c/dom/svg.js Modified: branches/08x/089/org/w3c/dom/svg.js =================================================================== --- branches/08x/089/org/w3c/dom/svg.js 2011-11-04 15:35:49 UTC (rev 3069) +++ branches/08x/089/org/w3c/dom/svg.js 2011-11-05 14:03:54 UTC (rev 3070) @@ -1285,12 +1285,12 @@ } } if (((tar.localName === "g") || (tar.localName === "a")) && (tar.namespaceURI === "http://www.w3.org/2000/svg")) { - tar._currentStyle = tar._cacheMatrix = null; //キャッシュを消去 + tar._cacheMatrix = void 0; //キャッシュを消去 if (tar.firstChild) { slist = tar.getElementsByTagNameNS("http://www.w3.org/2000/svg", "*"); for (var i=0,sli=slist.length;i<sli;++i) { tar = slist[i]; - tar._currentStyle = tar._cacheMatrix = null; + tar._cacheMatrix = void 0; evtt = tar.ownerDocument.createEvent("MutationEvents"); evtt.initMutationEvent("DOMNodeInsertedIntoDocument", false, false, null, null, null, null, null); evtt.target = tar; @@ -4175,7 +4175,6 @@ } tnext = tpart = isLast = void 0; tar.addEventListener("DOMNodeInsertedIntoDocument", function(evt) { - evt.target._currentStyle = void 0; //キャッシュが生成されることがあるので削除 var tar = evt.target, ti = tar.firstChild, ttp = tar._tar,