diff options
Diffstat (limited to 'js/src/tests/test262/ch10/10.6/S10.6_A7.js')
-rw-r--r-- | js/src/tests/test262/ch10/10.6/S10.6_A7.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/tests/test262/ch10/10.6/S10.6_A7.js b/js/src/tests/test262/ch10/10.6/S10.6_A7.js new file mode 100644 index 000000000..f013ba013 --- /dev/null +++ b/js/src/tests/test262/ch10/10.6/S10.6_A7.js @@ -0,0 +1,20 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/** + * Get arguments of function + * + * @path ch10/10.6/S10.6_A7.js + * @description Use property arguments + */ + +function f1() { + return arguments; +} + +//CHECK#1-5 +for(var i = 1; i < 5; i++){ +if (f1(1,2,3,4,5)[i] !== (i+1)) + $ERROR("#"+i+": Returning function's arguments work wrong, f1(1,2,3,4,5)["+i+"] !== "+(i+1)); +} + |