blob: 31b4185b934d8295af0d6290818966dab574c23f [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-iii-4
description: >
Array.prototype.every - return value of callbackfn is a boolean
(value is true)
---*/
var accessed = false;
var obj = { 0: 11, length: 1 };
function callbackfn(val, idx, obj) {
accessed = true;
return true;
}
assert(Array.prototype.every.call(obj, callbackfn), 'Array.prototype.every.call(obj, callbackfn) !== true');
assert(accessed, 'accessed !== true');