svnno****@sourc*****
svnno****@sourc*****
2011年 4月 8日 (金) 23:21:49 JST
Revision: 2575
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2575
Author: dhrname
Date: 2011-04-08 23:21:49 +0900 (Fri, 08 Apr 2011)
Log Message:
-----------
SVGColorを追加
Modified Paths:
--------------
trunk/Spec/spec/SvgDomSpec.js
Modified: trunk/Spec/spec/SvgDomSpec.js
===================================================================
--- trunk/Spec/spec/SvgDomSpec.js 2011-04-08 12:23:05 UTC (rev 2574)
+++ trunk/Spec/spec/SvgDomSpec.js 2011-04-08 14:21:49 UTC (rev 2575)
@@ -1006,4 +1006,14 @@
t = null;
});
});
+ describe("SVG Unit :: SVGColor", function() {
+ var s;
+ beforeEach(function() {
+ s = svg.createSVGNumber();
+ });
+ /*デフォルト値かどうかをチェックしていく(Checking the default value of a SVGNumber interface.)*/
+ it("for the default value on the property of SVGNumber", function() {
+ expect(s.value).toEqual(0);
+ });
+ });
});
\ No newline at end of file