[Sie-announce] SIEコード [1980] _tarプロパティをメソッドに使うのをやめる

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2010年 8月 24日 (火) 21:12:20 JST


Revision: 1980
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1980
Author:   dhrname
Date:     2010-08-24 21:12:20 +0900 (Tue, 24 Aug 2010)

Log Message:
-----------
_tarプロパティをメソッドに使うのをやめる

Modified Paths:
--------------
    branches/06x/061/org/w3c/dom/smil.js

Modified: branches/06x/061/org/w3c/dom/smil.js
===================================================================
--- branches/06x/061/org/w3c/dom/smil.js	2010-08-24 10:54:25 UTC (rev 1979)
+++ branches/06x/061/org/w3c/dom/smil.js	2010-08-24 12:12:20 UTC (rev 1980)
@@ -78,21 +78,21 @@
 };
 ElementTimeControl.prototype = {
   /*void*/  beginElement : function() {
-    var ttd = this._tar.ownerDocument, evt = ttd.createEvent("TimeEvents");
+    var ttd = this.ownerDocument, evt = ttd.createEvent("TimeEvents");
     evt.initTimeEvent("beginEvent", ttd.defaultView, 0);
-    this._tar.dispatchEvent(evt);
+    this.dispatchEvent(evt);
   },
   /*void*/  endElement : function() {
-    var ttd = this._tar.ownerDocument, evt = ttd.createEvent("TimeEvents");
+    var ttd = this.ownerDocument, evt = ttd.createEvent("TimeEvents");
     evt.initTimeEvent("endEvent", ttd.defaultView, 0);
-    this._tar.dispatchEvent(evt);
+    this.dispatchEvent(evt);
   },
   /*void*/  beginElementAt : function(/*float*/ offset) {
-    var ntc = this._tar.ownerDocument.documentElement.getCurrentTime();
+    var ntc = this.ownerDocument.documentElement.getCurrentTime();
     this._begin = offset + ntc;
   },
   /*void*/  endElementAt : function(/*float*/ offset) {
-    var ntc = this._tar.ownerDocument.documentElement.getCurrentTime();
+    var ntc = this.ownerDocument.documentElement.getCurrentTime();
     this._end = offset + ntc;
   }
 };




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