svnno****@sourc*****
svnno****@sourc*****
2009年 9月 27日 (日) 22:49:03 JST
Revision: 1292
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1292
Author: dhrname
Date: 2009-09-27 22:49:03 +0900 (Sun, 27 Sep 2009)
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 2009-09-27 13:48:51 UTC (rev 1291)
+++ branches/DOM/org/w3c/dom/svg.js 2009-09-27 13:49:03 UTC (rev 1292)
@@ -3464,22 +3464,19 @@
SVGZoomEvent.constructor = UIEvent;
SVGZoomEvent.prototype = new UIEvent();
-function SVGAnimationElement :
- SVGElement,
- SVGTests,
- SVGExternalResourcesRequired,
- smil::ElementTimeControl,
- events::EventTarget {
+function SVGAnimationElement() {
SVGElement.apply(this, arguments);
- /*readonly SVGElement*/ targetElement;
+ /*readonly SVGElement*/ this.targetElement;
+ this._etc = new ElementTimeControl(this);
+ return this;
+};
+SVGAnimationElement.constructor = SVGElement;
+SVGAnimationElement.prototype = new SVGElement();
+
float getStartTime ( );
float getCurrentTime ( );
float getSimpleDuration ( )
raises( DOMException );
- };
-SVGColorProfileElement.constructor = SVGElement;
-SVGColorProfileElement.prototype = new SVGElement();
-
function SVGAnimateElement : SVGAnimationElement {
SVGElement.apply(this, arguments);
};