svnno****@sourc*****
svnno****@sourc*****
2010年 5月 31日 (月) 23:51:15 JST
Revision: 1867
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1867
Author: dhrname
Date: 2010-05-31 23:51:15 +0900 (Mon, 31 May 2010)
Log Message:
-----------
高速化
Modified Paths:
--------------
branches/06x/061/org/w3c/dom/events.js
Modified: branches/06x/061/org/w3c/dom/events.js
===================================================================
--- branches/06x/061/org/w3c/dom/events.js 2010-05-31 14:45:16 UTC (rev 1866)
+++ branches/06x/061/org/w3c/dom/events.js 2010-05-31 14:51:15 UTC (rev 1867)
@@ -199,7 +199,7 @@
/*Eventクラス
*イベントの雛形となる。プロパティもすべて含めて、必須
*/
-function Event(evt) {
+function Event() {
/*DOMString*/ this.type;
/*EventTarget*/ this.target;
/*EventTarget*/ this.currentTarget = null;
@@ -284,7 +284,7 @@
};
function MutationEvent(){
- Event.call(this, arguments);
+ Event.call(this);
/*Node*/ this.relatedNode;
/*string*/ this.prevValue;
/*string*/ this.newValue;