summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/slice/S15.4.4.10_A3_T2.js
blob: 45d225c6b7eeae5372aa76d19e94ca102e857cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Check ToLength(length) for non Array objects
esid: sec-array.prototype.slice
description: length = 4294967297
---*/

assert.throws(RangeError, () => {
  var obj = {};
  obj.slice = Array.prototype.slice;
  obj[0] = "x";
  obj[4294967296] = "y";
  obj.length = 4294967297;
  obj.slice(0, 4294967297);
});

reportCompare(0, 0);