svnno****@sourc*****
svnno****@sourc*****
2011年 4月 7日 (木) 20:49:12 JST
Revision: 2569 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2569 Author: dhrname Date: 2011-04-07 20:49:12 +0900 (Thu, 07 Apr 2011) Log Message: ----------- createSVGAngleメソッドがなかったため、追加 Modified Paths: -------------- branches/07x/075/org/w3c/dom/svg.js Modified: branches/07x/075/org/w3c/dom/svg.js =================================================================== --- branches/07x/075/org/w3c/dom/svg.js 2011-04-06 14:26:59 UTC (rev 2568) +++ branches/07x/075/org/w3c/dom/svg.js 2011-04-07 11:49:12 UTC (rev 2569) @@ -1259,7 +1259,6 @@ SVGSVGElement.prototype = new SVGElement(); /*void*/ SVGSVGElement.prototype.forceRedraw = function() { }; - /*float*/ SVGSVGElement.prototype.getCurrentTime = function(){ return (this._currentTime); }; @@ -1271,6 +1270,12 @@ s.value = 0; return s; }; +/*SVGAngle*/ SVGSVGElement.prototype.createSVGAngle = function(){ + var s = new SVGAngle(); + s.value = 0; + s.unitType = 1; + return s; +}; /*SVGLength*/ SVGSVGElement.prototype.createSVGLength = function(){ var s = new SVGLength(); s.unitType = /*SVG_LENGTHTYPE_NUMBER*/ 1;