summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/prototype/toReversed/length-property-ignored.js
blob: 15b32a1d70c76a482c79f8735769060a2ba20f53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-%typedarray%.prototype.toReversed
description: >
  %TypedArray%.prototype.toReversed does not read a "length" property
info: |
  %TypedArray%.prototype.toReversed ( )

  ...
  3. Let length be O.[[ArrayLength]].
  ...
includes: [testTypedArray.js, compareArray.js]
features: [TypedArray, change-array-by-copy]
---*/

testWithTypedArrayConstructors(TA => {
  var ta = new TA([0, 1, 2]);
  Object.defineProperty(ta, "length", { value: 2 })
  var res = ta.toReversed();
  assert.compareArray(res, [2, 1, 0]);
  assert.sameValue(res.length, 3);

  ta = new TA([0, 1, 2]);
  Object.defineProperty(ta, "length", { value: 5 });
  res = ta.toReversed();
  assert.compareArray(res, [2, 1, 0]);
  assert.sameValue(res.length, 3);
});

function setLength(length) {
    Object.defineProperty(TypedArray.prototype, "length", {
        get: () => length,
    });
}

testWithTypedArrayConstructors(TA => {
  var ta = new TA([0, 1, 2]);

  setLength(2);
  var res = ta.toReversed();
  setLength(3);
  assert.compareArray(res, [2, 1, 0]);

  setLength(5);
  res = ta.toReversed();
  setLength(3);
  assert.compareArray(res, [2, 1, 0]);
});

reportCompare(0, 0);