blob: fcfc6b35cec9181af906456ba8d2e49a1a4b266c [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-25
description: >
Array.prototype.every - return value of callbackfn is the
Arguments object
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
return arguments;
}
assert([11].every(callbackfn), '[11].every(callbackfn) !== true');
assert(accessed, 'accessed !== true');