diff --git a/dist/env.js b/dist/env.js index 3dae0db6..02a36e2f 100644 --- a/dist/env.js +++ b/dist/env.js @@ -5590,7 +5590,7 @@ __extend__(HTMLFormElement.prototype,{ return this.getAttribute('method'); }, - set method(action){ + set method(method){ this.setAttribute('method', method); }, diff --git a/dist/env.rhino.js b/dist/env.rhino.js index 9c411869..32920c85 100644 --- a/dist/env.rhino.js +++ b/dist/env.rhino.js @@ -5590,7 +5590,7 @@ __extend__(HTMLFormElement.prototype,{ return this.getAttribute('method'); }, - set method(action){ + set method(method){ this.setAttribute('method', method); }, diff --git a/dist/html.js b/dist/html.js index 421a089e..9cbdd786 100644 --- a/dist/html.js +++ b/dist/html.js @@ -1555,7 +1555,7 @@ __extend__(HTMLFormElement.prototype,{ return this.getAttribute('method'); }, - set method(action){ + set method(method){ this.setAttribute('method', method); }, diff --git a/dist/window.js b/dist/window.js index 8347c895..f22f69c2 100644 --- a/dist/window.js +++ b/dist/window.js @@ -281,6 +281,7 @@ Window = function(scope, parent, opener){ return proxy; }); + var __Array__; if(!scope.Array){ __Array__ = function(){ diff --git a/src/html/form.js b/src/html/form.js index 64554674..6eba2571 100644 --- a/src/html/form.js +++ b/src/html/form.js @@ -46,7 +46,7 @@ __extend__(HTMLFormElement.prototype,{ return this.getAttribute('method'); }, - set method(action){ + set method(method){ this.setAttribute('method', method); },