svnno****@sourc*****
svnno****@sourc*****
2011年 8月 30日 (火) 21:24:23 JST
Revision: 2901
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2901
Author: dhrname
Date: 2011-08-30 21:24:23 +0900 (Tue, 30 Aug 2011)
Log Message:
-----------
DOMの動的な属性変更がうまく、描画に影響しなかった問題を解決
Modified Paths:
--------------
branches/08x/084/org/w3c/dom/svg.js
Modified: branches/08x/084/org/w3c/dom/svg.js
===================================================================
--- branches/08x/084/org/w3c/dom/svg.js 2011-08-28 13:35:02 UTC (rev 2900)
+++ branches/08x/084/org/w3c/dom/svg.js 2011-08-30 12:24:23 UTC (rev 2901)
@@ -1261,7 +1261,7 @@
evt.target.addEventListener("DOMAttrModified", function(evt){
if (evt.eventPhase === /*Event.BUBBLING_PHASE*/ 3) {
var tar = evt.target,
- evtt;
+ evtt;
if (tar.parentNode) {
evtt = tar.ownerDocument.createEvent("MutationEvents");
evtt.initMutationEvent("DOMNodeInsertedIntoDocument", false, false, null, null, null, null, null);
@@ -1280,7 +1280,7 @@
evt = null;
}, false);
evt = null;
- }, true);
+ }, false);
return this;
};
SVGSVGElement.constructor = SVGElement;