blob: faf4a227c4f00458cdf8e66fbe52e3bd7925a26d [file] [log] [blame]
// 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
es5id: 15.4.4.14-3-9
description: >
Array.prototype.indexOf - value of 'length' is a number (value is
-Infinity)
---*/
var obj = { 0: 0, length: -Infinity };
assert.sameValue(Array.prototype.indexOf.call(obj, 0), -1, 'Array.prototype.indexOf.call(obj, 0)');