[Sie-announce] SIEコード [3052] setColorメソッドの引数がnullであった場合も対応できるように修正

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2011年 10月 31日 (月) 20:20:31 JST


Revision: 3052
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=3052
Author:   dhrname
Date:     2011-10-31 20:20:31 +0900 (Mon, 31 Oct 2011)

Log Message:
-----------
setColorメソッドの引数がnullであった場合も対応できるように修正

Modified Paths:
--------------
    branches/08x/088/org/w3c/dom/svg.js

Modified: branches/08x/088/org/w3c/dom/svg.js
===================================================================
--- branches/08x/088/org/w3c/dom/svg.js	2011-10-30 14:37:01 UTC (rev 3051)
+++ branches/08x/088/org/w3c/dom/svg.js	2011-10-31 11:20:31 UTC (rev 3052)
@@ -757,7 +757,7 @@
 //                    raises( SVGException );
 /*void*/ this.setColor =function(/*unsigned short*/ colorType, /*DOMString*/ rgbColor, /*DOMString*/ iccColor ){
   this.colorType = colorType;
-  if ((colorType === /*SVGColor.SVG_COLORTYPE_RGBCOLOR*/ 1) || (colorType === /*SVGColor.SVG_COLORTYPE_CURRENTCOLOR*/ 3)) {
+  if (rgbColor && ((colorType === /*SVGColor.SVG_COLORTYPE_RGBCOLOR*/ 1) || (colorType === /*SVGColor.SVG_COLORTYPE_CURRENTCOLOR*/ 3))) {
     this.setRGBColor(rgbColor);
   }
   colorType = rgbColor = void 0;




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