blob: dbb973be42e28b9cd66f357b792a2c391238f3e4 [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 - deleting own property with prototype
property causes prototype index property to be visited on an
Array-like object
---*/
var testResult = false;
function callbackfn(val, idx, obj) {
if (idx === 1 && val === 1) {
testResult = true;
}
}
var obj = {
0: 0,
1: 111,
length: 10
};
Object.defineProperty(obj, "0", {
get: function() {
delete obj[1];
return 0;
},
configurable: true
});
Object.prototype[1] = 1;
Array.prototype.forEach.call(obj, callbackfn);
assert(testResult, 'testResult !== true');