blob: 524d6196525dcd1348fc85663249de04365f941c [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.every
es5id: 15.4.4.16-7-c-ii-22
description: >
Array.prototype.every - callbackfn called with correct parameters
(the index k is correct)
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
if (val === 11) {
return idx === 0;
}
if (val === 12) {
return idx === 1;
}
}
var obj = { 0: 11, 1: 12, length: 2 };
assert(Array.prototype.every.call(obj, callbackfn), 'Array.prototype.every.call(obj, callbackfn) !== true');
assert(accessed, 'accessed !== true');