// 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 description: > Array.prototype.every applied to String object, which implements its own property get method ---*/ function callbackfn1(val, idx, obj) { return parseInt(val, 10) > 1; } function callbackfn2(val, idx, obj) { return parseInt(val, 10) > 2; } var str = new String("432"); String.prototype[3] = "1"; assert(Array.prototype.every.call(str, callbackfn1), 'Array.prototype.every.call(str, callbackfn1) !== true'); assert.sameValue(Array.prototype.every.call(str, callbackfn2), false, 'Array.prototype.every.call(str, callbackfn2)'); reportCompare(0, 0);