// 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-5-21 description: Array.prototype.every - the global object can be used as thisArg ---*/ var global = this; var accessed = false; function callbackfn(val, idx, obj) { accessed = true; return this === global; } assert([11].every(callbackfn, global), '[11].every(callbackfn, global) !== true'); assert(accessed, 'accessed !== true'); reportCompare(0, 0);