diff options
Diffstat (limited to 'js/src/tests/ecma_5/extensions/function-properties.js')
-rw-r--r-- | js/src/tests/ecma_5/extensions/function-properties.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/js/src/tests/ecma_5/extensions/function-properties.js b/js/src/tests/ecma_5/extensions/function-properties.js new file mode 100644 index 000000000..9585322ef --- /dev/null +++ b/js/src/tests/ecma_5/extensions/function-properties.js @@ -0,0 +1,21 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/licenses/publicdomain/ + +function foo() +{ + assertEq(foo.arguments.length, 0); + assertEq(foo.caller, null); +} + +assertEq(foo.arguments, null); +assertEq(foo.caller, null); +foo(); +assertEq(foo.arguments, null); +assertEq(foo.caller, null); + +/******************************************************************************/ + +if (typeof reportCompare === "function") + reportCompare(true, true); + +print("Tests complete"); |