summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object-realm.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object-realm.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object-realm.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object-realm.js b/js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object-realm.js
new file mode 100644
index 0000000000..9706b9c315
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object-realm.js
@@ -0,0 +1,40 @@
+// Copyright 2019 Aleksey Shvayka. 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
+ (honoring the Realm of the current execution context)
+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.
+features: [cross-realm]
+---*/
+
+var other = $262.createRealm().global;
+var fn = new other.Function();
+
+assert.throws(other.TypeError, function() {
+ fn.apply(null, false);
+});
+
+assert.throws(other.TypeError, function() {
+ fn.apply(null, 1234.5678);
+});
+
+assert.throws(other.TypeError, function() {
+ fn.apply(null, '');
+});
+
+assert.throws(other.TypeError, function() {
+ fn.apply(null, Symbol('desc'));
+});
+
+reportCompare(0, 0);