summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/toSorted/ignores-species.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Array/prototype/toSorted/ignores-species.js')
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/toSorted/ignores-species.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Array/prototype/toSorted/ignores-species.js b/js/src/tests/test262/built-ins/Array/prototype/toSorted/ignores-species.js
new file mode 100644
index 0000000000..78c9656550
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Array/prototype/toSorted/ignores-species.js
@@ -0,0 +1,32 @@
+// Copyright (C) 2021 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-array.prototype.toSorted
+description: >
+ Array.prototype.toSorted ignores @@species
+info: |
+ Array.prototype.toSorted ( compareFn )
+
+ ...
+ 8. Let A be ? ArrayCreate(𝔽(len)).
+ ...
+features: [change-array-by-copy]
+---*/
+
+var a = [];
+a.constructor = {};
+a.constructor[Symbol.species] = function () {}
+
+assert.sameValue(Object.getPrototypeOf(a.toSorted()), Array.prototype);
+
+var b = [];
+Object.defineProperty(b, "constructor", {
+ get() {
+ throw new Test262Error("Should not get .constructor");
+ }
+});
+
+b.toSorted();
+
+reportCompare(0, 0);