Commit 7dcd1d06 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Added more apply and call tests.

parent 14138e6f
......@@ -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() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment