svnno****@sourc*****
svnno****@sourc*****
2009年 9月 27日 (日) 22:48:51 JST
Revision: 1291 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1291 Author: dhrname Date: 2009-09-27 22:48:51 +0900 (Sun, 27 Sep 2009) Log Message: ----------- コードの整形 Modified Paths: -------------- branches/DOM/org/w3c/dom/smil.js Modified: branches/DOM/org/w3c/dom/smil.js =================================================================== --- branches/DOM/org/w3c/dom/smil.js 2009-09-27 13:37:05 UTC (rev 1290) +++ branches/DOM/org/w3c/dom/smil.js 2009-09-27 13:48:51 UTC (rev 1291) @@ -55,6 +55,7 @@ * See W3C License http://www.w3.org/Consortium/Legal/ for more details. */ // File: smil.idl +/* #ifndef _SMIL_IDL_ #define _SMIL_IDL_ @@ -64,21 +65,26 @@ module smil { typedef dom::DOMString DOMString; +*/ +function ElementTimeControl(ele) { + this.tar = ele; + return this; +}; +ElementTimeControl.prototype = { + /*void*/ beginElement : function() {}, + /*void*/ endElement : function() {}, + /*void*/ endElementAt : function(/*float*/ offset) {} +}; - interface ElementTimeControl { - void beginElement(); - void beginElementAt(in float offset); - void endElement(); - void endElementAt(in float offset); - }; - - interface TimeEvent : events::Event { +function TimeEvent() { readonly attribute views::AbstractView view; readonly attribute long detail; - void initTimeEvent(in DOMString typeArg, - in views::AbstractView viewArg, - in long detailArg); - }; + return this; }; - -#endif // _SMIL_IDL_ \ No newline at end of file +TiemEvent.counstructor = Event; +TimeEvent.prototype = new Event(); +/*void*/ TimeEvent.prototype.initTimeEvent = function(/*DOMString*/ typeArg, + /*views::AbstractView*/ viewArg, + /*long*/ detailArg) { +}; +//#endif // _SMIL_IDL_ \ No newline at end of file