svnno****@sourc*****
svnno****@sourc*****
2009年 9月 17日 (木) 21:40:39 JST
Revision: 1259
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1259
Author: dhrname
Date: 2009-09-17 21:40:39 +0900 (Thu, 17 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-16 14:10:08 UTC (rev 1258)
+++ branches/DOM/org/w3c/dom/svg.js 2009-09-17 12:40:39 UTC (rev 1259)
@@ -1706,80 +1706,6 @@
SVGElement.constructor = Element;
SVGElement.prototype = new Element();
-function SVGAnimatedBoolean() {
- /*boolean*/ this.baseVal = true;
- /*readonly boolean*/ this.animVal;
- return this;
-};
-
-function SVGAnimatedString() {
- /*String*/ this.baseVal = "";
- /*readonly String*/ this.animVal;
- return this;
-};
-function SVGStringList() { /*
- readonly attribute unsigned long numberOfItems;
- void clear ( )
- raises( DOMException );
- DOMString initialize ( in DOMString newItem )
- raises( DOMException, SVGException );
- DOMString getItem ( in unsigned long index )
- raises( DOMException );
- DOMString insertItemBefore ( in DOMString newItem, in unsigned long index )
- raises( DOMException, SVGException );
- DOMString replaceItem ( in DOMString newItem, in unsigned long index )
- raises( DOMException, SVGException );
- DOMString removeItem ( in unsigned long index )
- raises( DOMException );
- DOMString appendItem ( in DOMString newItem )
- raises( DOMException, SVGException );
-*/return this;
-};
-/*
- interface SVGAnimatedEnumeration {
- attribute unsigned short baseVal;
- // raises DOMException on setting
- readonly attribute unsigned short animVal;
- };
- interface SVGAnimatedInteger {
- attribute long baseVal;
- // raises DOMException on setting
- readonly attribute long animVal;
- };
- interface SVGNumber {
- attribute float value;
- // raises DOMException on setting
- };
- interface SVGAnimatedNumber {
- attribute float baseVal;
- // raises DOMException on setting
- readonly attribute float animVal;
- };
-*/
-function SVGNumberList() { /*
- readonly attribute unsigned long numberOfItems;
- void clear ( )
- raises( DOMException );
- SVGNumber initialize ( in SVGNumber newItem )
- raises( DOMException, SVGException );
- SVGNumber getItem ( in unsigned long index )
- raises( DOMException );
- SVGNumber insertItemBefore ( in SVGNumber newItem, in unsigned long index )
- raises( DOMException, SVGException );
- SVGNumber replaceItem ( in SVGNumber newItem, in unsigned long index )
- raises( DOMException, SVGException );
- SVGNumber removeItem ( in unsigned long index )
- raises( DOMException );
- SVGNumber appendItem ( in SVGNumber newItem )
- raises( DOMException, SVGException );
-*/
- return this;
-};
-function SVGAnimatedNumberList() {
- /*readonly SVGNumberList*/ this.baseVal = new SVGNumberList();
- /*readonly SVGNumberList*/ this.animVal;
- return this;
-};
/*SVGLengthクラス
*長さを設定する(単位pxに統一する方便として使う)
*valueInSpecifiedUnitsプロパティはpxに統一する前の数値。valueプロパティはpxに統一した後の数値