summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/indexOf/15.4.4.14-5-16.js
blob: b10cf23ae8bd1cfdd46382311e4c3f81e4c066d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.indexof
description: >
    Array.prototype.indexOf - value of 'fromIndex' is a string
    containing Infinity
---*/

var arr = [];
arr[Math.pow(2, 32) - 2] = true; //length is the max value of Uint type

assert.sameValue(arr.indexOf(true, "Infinity"), -1, 'arr.indexOf(true, "Infinity")');

reportCompare(0, 0);