blob: 24a4076913fe9a55aa4e9125ba8827f6485eac1d [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.indexof
es5id: 15.4.4.14-9-b-i-5
description: >
Array.prototype.indexOf - element to be retrieved is own data
property that overrides an inherited accessor property on an Array
---*/
Object.defineProperty(Array.prototype, "0", {
get: function () {
return false;
},
configurable: true
});
assert.sameValue([true].indexOf(true), 0, '[true].indexOf(true)');