summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object.js b/js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object.js
new file mode 100644
index 0000000000..2c860c7833
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object.js
@@ -0,0 +1,37 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-function.prototype.apply
+description: >
+ Throws a TypeError exception if argArray is not an object
+info: |
+ Function.prototype.apply ( thisArg, argArray )
+
+ [...]
+ 4. Let argList be ? CreateListFromArrayLike(argArray).
+
+ CreateListFromArrayLike ( obj [ , elementTypes ] )
+
+ [...]
+ 2. If Type(obj) is not Object, throw a TypeError exception.
+---*/
+
+function fn() {}
+
+assert.throws(TypeError, function() {
+ fn.apply(null, true);
+});
+
+assert.throws(TypeError, function() {
+ fn.apply(null, NaN);
+});
+
+assert.throws(TypeError, function() {
+ fn.apply(null, '1,2,3');
+});
+
+assert.throws(TypeError, function() {
+ fn.apply(null, Symbol());
+});
+
+reportCompare(0, 0);