summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/length/define-own-prop-length-error.js
blob: a3122b43c6fcd0447d616023fd3a96d97efc39de (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
// Copyright (C) 2023 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
author: Jordan Harband
esid: sec-arraysetlength
description: >
  Setting an invalid array length throws a RangeError
info: |
  ArraySetLength ( A, Desc )

  [...]
  5. If SameValueZero(newLen, numberLen) is false, throw a RangeError exception.
  [...]
---*/

assert.throws(RangeError, function () {
  Object.defineProperty([], 'length', { value: -1, configurable: true });
});

assert.throws(RangeError, function () {
  // the string is intentionally "computed" here to ensure there are no optimization bugs
  Object.defineProperty([], 'len' + 'gth', { value: -1, configurable: true });
});

reportCompare(0, 0);