blob: f0d11eb5bfcc580b9019b3422c14379509e1b0db [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-i-7
description: >
Array.prototype.every - element to be retrieved is inherited data
property on an Array-like object
---*/
var kValue = 'abc';
function callbackfn(val, idx, obj) {
if (idx === 5) {
return val !== kValue;
} else {
return true;
}
}
var proto = { 5: kValue };
var Con = function () { };
Con.prototype = proto;
var child = new Con();
child.length = 10;
assert.sameValue(Array.prototype.every.call(child, callbackfn), false, 'Array.prototype.every.call(child, callbackfn)');