blob: 38f9a20e8499df67539442ef67eb52040caae358 [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-8-4
description: >
Array.prototype.indexOf returns -1 when abs('fromIndex') is length
of array
---*/
assert.sameValue([1, 2, 3, 4].indexOf(0, -4), -1, '[1, 2, 3, 4].indexOf(0, -4)');