svnno****@sourc*****
svnno****@sourc*****
2011年 4月 19日 (火) 20:58:16 JST
Revision: 2613 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2613 Author: dhrname Date: 2011-04-19 20:58:15 +0900 (Tue, 19 Apr 2011) Log Message: ----------- RGBColorインターフェースのプロパティに関して、デフォルト値を修正 Modified Paths: -------------- branches/07x/076/org/w3c/dom/css.js Modified: branches/07x/076/org/w3c/dom/css.js =================================================================== --- branches/07x/076/org/w3c/dom/css.js 2011-04-19 11:00:05 UTC (rev 2612) +++ branches/07x/076/org/w3c/dom/css.js 2011-04-19 11:58:15 UTC (rev 2613) @@ -531,6 +531,7 @@ this.red = new CSSPrimitiveValue(); this.green = new CSSPrimitiveValue(); this.blue = new CSSPrimitiveValue(); + this.red.primitiveType = this.green.primitiveType = this.blue.primitiveType = /*CSSPrimitiveValue.CSS_NUMBER*/ 1; return this; };