svnno****@sourc*****
svnno****@sourc*****
2010年 1月 5日 (火) 23:21:32 JST
Revision: 1539
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1539
Author: dhrname
Date: 2010-01-05 23:21:32 +0900 (Tue, 05 Jan 2010)
Log Message:
-----------
Modified Paths:
--------------
branches/DOM/org/w3c/dom/svg.js
Modified: branches/DOM/org/w3c/dom/svg.js
===================================================================
--- branches/DOM/org/w3c/dom/svg.js 2010-01-05 14:18:34 UTC (rev 1538)
+++ branches/DOM/org/w3c/dom/svg.js 2010-01-05 14:21:32 UTC (rev 1539)
@@ -244,7 +244,7 @@
} else if (degli <= 2) {
switch (com) {
case "translate":
- t.setTranslate(parseFloat(deg[0]); parseFloat((deg[1] || 0)));
+ t.setTranslate(parseFloat(deg[0]), parseFloat((deg[1] || 0)));
break;
case "scale":
t.setScale(parseFloat(deg[0]), parseFloat((deg[1] || deg[0])));
@@ -1561,6 +1561,7 @@
this.pathSegTypeAsLetter = "A";
return this;
};
+
function SVGPathSegArcRel() {
/*float*/ this.x;
/*float*/ this.y;
@@ -1573,6 +1574,7 @@
this.pathSegTypeAsLetter = "a";
return this;
};
+
function SVGPathSegLinetoHorizontalAbs() {
/*float*/ this.x;
this.pathSegType = SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS;