[Sie-announce] SIEコード [1651] SVGStylableオブジェクトを追加

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2010年 2月 8日 (月) 22:14:59 JST


Revision: 1651
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1651
Author:   dhrname
Date:     2010-02-08 22:14:59 +0900 (Mon, 08 Feb 2010)

Log Message:
-----------
SVGStylableオブジェクトを追加

Modified Paths:
--------------
    branches/ufltima/dom/svg.js

Modified: branches/ufltima/dom/svg.js
===================================================================
--- branches/ufltima/dom/svg.js	2010-02-08 13:14:40 UTC (rev 1650)
+++ branches/ufltima/dom/svg.js	2010-02-08 13:14:59 UTC (rev 1651)
@@ -534,6 +534,14 @@
   /*unsigned short*/ SVG_UNIT_TYPE_USERSPACEONUSE    : 1,
   /*unsigned short*/ SVG_UNIT_TYPE_OBJECTBOUNDINGBOX : 2
 };
+function SVGStylable() { 
+  /*readonly attribute SVGAnimatedString*/ this.className = new SVGAnimatedString();
+  /*readonly attribute css::CSSStyleDeclaration*/ this.style = new CSSStyleDeclaration();
+};
+SVGStylable.prototype = {
+  /*css::CSSValue*/ getPresentationAttribute : function( /*DOMString*/ name ){
+  }
+}
 
 /*SVGURIReferenceオブジェクトはURI参照を用いる要素に適用される
  *SIEでは、もっぱらXLink言語の処理を行う
@@ -1923,7 +1931,7 @@
 function SVGAnimationElement() { 
   SVGElement.apply(this, arguments);
   /*readonly SVGElement*/ this.targetElement;
-  this._etc = new ElementTimeControl(this);
+  //smil::ElementTimeControl;
   return this;
 };
 SVGAnimationElement.constructor = SVGElement;




Sie-announce メーリングリストの案内
Back to archive index