svnno****@sourc*****
svnno****@sourc*****
2010年 10月 10日 (日) 21:32:46 JST
Revision: 2051
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2051
Author: dhrname
Date: 2010-10-10 21:32:46 +0900 (Sun, 10 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-10 12:29:16 UTC (rev 2050)
+++ branches/06x/061/org/w3c/dom/svg.js 2010-10-10 12:32:46 UTC (rev 2051)
@@ -577,7 +577,7 @@
return this;
};
SVGAngle.prototype = {
- /*void*/ newValueSpecifiedUnits : function(/*in unsigned short*/ unitType, /*in float*/ valueInSpecifiedUnits ) {
+ /*void*/ newValueSpecifiedUnits : function (/*in unsigned short*/ unitType, /*in float*/ valueInSpecifiedUnits ) {
var n = 1, _s = ""; //nは各単位から利用単位への変換数値。_sは単位の文字列を表す
if (unitType === SVGAngle.SVG_ANGLETYPE_DEG) {
_s = "deg"
@@ -595,7 +595,7 @@
n = _s = null;
//raises( DOMException );
},
- /*void*/ convertToSpecifiedUnits : function/*in unsigned short*/ unitType ) {
+ /*void*/ convertToSpecifiedUnits : function (/*in unsigned short*/ unitType ) {
this.newValueSpecifiedUnits(unitType, this.valueInSpecifiedUnits);
//raises( DOMException );
}