blob: f917c6035a0305563535293e45b5fb1d4fe928d0 [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.foreach
description: Array.prototype.forEach - non-indexed properties are not called
---*/
var accessed = false;
var result = true;
function callbackfn(val, idx, obj) {
accessed = true;
if (val === 8) {
result = false;
}
}
var obj = {
0: 11,
10: 12,
non_index_property: 8,
length: 20
};
Array.prototype.forEach.call(obj, callbackfn);
assert(result, 'result !== true');
assert(accessed, 'accessed !== true');