From 7dcd1d06ef543cb1dcb7e1d374081864de0384a6 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 25 Jun 2012 14:09:12 +0200 Subject: [PATCH] jscript: Added more apply and call tests. --- dlls/jscript/tests/api.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/jscript/tests/api.js b/dlls/jscript/tests/api.js index d8f86f5a543..ac909b2f979 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() { -- 2.11.4.GIT