blob: 3392433cbe3f6eabcde27a452fd14432f91770b7 [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-18
description: >
Array.prototype.every - 'this' of 'callbackfn' is an String object
when T is not an object (T is a string primitive)
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
return 'hello' === this.valueOf();
}
var obj = { 0: 11, length: 2 };
assert(Array.prototype.every.call(obj, callbackfn, "hello"), 'Array.prototype.every.call(obj, callbackfn, "hello") !== true');
assert(accessed, 'accessed !== true');