blob: c7873e9ee77e665312d858cdaa777a9fb2d9f924 [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-8
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), 0, 'Array.prototype.indexOf.call(obj, 0)');