[Sie-announce] SIEコード [2047]

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2010年 10月 9日 (土) 21:06:26 JST


Revision: 2047
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2047
Author:   dhrname
Date:     2010-10-09 21:06:26 +0900 (Sat, 09 Oct 2010)

Log Message:
-----------


Modified Paths:
--------------
    branches/06x/061/org/w3c/dom/svg.js

Modified: branches/06x/061/org/w3c/dom/svg.js
===================================================================
--- branches/06x/061/org/w3c/dom/svg.js	2010-10-09 11:24:56 UTC (rev 2046)
+++ branches/06x/061/org/w3c/dom/svg.js	2010-10-09 12:06:26 UTC (rev 2047)
@@ -2080,6 +2080,10 @@
     if (!!!tar._fillElement) {
       el.appendChild(fillElement);
       tar._fillElement = fillElement; //キャッシュを作る
+    } else {
+      /*あらかじめ消しおかないと、効果が出ない*/
+      el.removeChild(fillElement);
+      el.appendChild(fillElement);
     }
     fc = fillOpacity = null;
   } else if (fill.uri) {
@@ -2096,6 +2100,9 @@
       if (t.localName !== "radialGradient" && !!!tar._fillElement) {
         el.appendChild(evtt._tar);
         tar._fillElement = evtt._tar; //キャッシュを作る
+      } else {
+        el.removeChild(evtt._tar);
+        el.appendChild(evtt._tar);
       }
       t = evtt = null;
     }
@@ -2146,6 +2153,9 @@
     if (!!!tar._strokeElement) {
       el.appendChild(strokeElement);
       tar._strokeElement = strokeElement;
+    } else {
+      el.removeChild(fillElement);
+      el.appendChild(fillElement);
     }
     tsd = null;
   } else {




Sie-announce メーリングリストの案内
Back to archive index