Jacek Caban : jscript: Added more apply and call tests.

Alexandre Julliard julliard at winehq.org
Mon Jun 25 13:24:14 CDT 2012


Module: wine
Branch: master
Commit: 7dcd1d06ef543cb1dcb7e1d374081864de0384a6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7dcd1d06ef543cb1dcb7e1d374081864de0384a6

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Jun 25 14:09:12 2012 +0200

jscript: Added more apply and call tests.

---

 dlls/jscript/tests/api.js |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/jscript/tests/api.js b/dlls/jscript/tests/api.js
index d8f86f5..ac909b2 100644
--- a/dlls/jscript/tests/api.js
+++ b/dlls/jscript/tests/api.js
@@ -1644,9 +1644,11 @@ function callTest(argc) {
 
 callTest.call(tmp, 1, 1);
 callTest.call(tmp, 2, 1, 2);
+callTest.call(tmp, 3, 1, 2, 3);
 
 callTest.apply(tmp, [1, 1]);
 callTest.apply(tmp, [2, 1, 2]);
+callTest.apply(tmp, [3, 1, 2, 3]);
 (function () { callTest.apply(tmp, arguments); })(2,1,2);
 
 function callTest2() {




More information about the wine-cvs mailing list