2014-07-22 01:09:02 +02:00
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
2015-07-17 17:42:45 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
2014-07-22 01:09:02 +02:00
|
|
|
|
|
|
|
/*---
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.2.3.6-4-191
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Object.defineProperty - 'O' is an Array, 'name' is an array index
|
|
|
|
named property, 'name' is an inherited data property, test that
|
|
|
|
defining own index named property is successful (15.4.5.1 step 4.c)
|
|
|
|
---*/
|
|
|
|
|
2014-11-12 14:41:09 +01:00
|
|
|
try {
|
2018-02-15 21:33:45 +01:00
|
|
|
Object.defineProperty(Array.prototype, "0", {
|
|
|
|
value: 11,
|
|
|
|
configurable: true
|
|
|
|
});
|
2014-07-22 01:09:02 +02:00
|
|
|
|
2018-02-15 21:33:45 +01:00
|
|
|
var arrObj = [];
|
2014-07-22 01:09:02 +02:00
|
|
|
|
2018-02-15 21:33:45 +01:00
|
|
|
Object.defineProperty(arrObj, "0", {
|
|
|
|
configurable: false
|
|
|
|
});
|
2014-07-22 01:09:02 +02:00
|
|
|
|
2018-02-15 21:33:45 +01:00
|
|
|
if (!arrObj.hasOwnProperty("0")) {
|
2021-07-28 22:50:06 +02:00
|
|
|
throw new Test262Error("Expected arrObj.hasOwnProperty('0') === true, actually " + arrObj.hasOwnProperty("0"));
|
2018-02-15 21:33:45 +01:00
|
|
|
}
|
|
|
|
if (Array.prototype[0] !== 11) {
|
2021-07-28 22:50:06 +02:00
|
|
|
throw new Test262Error("Expected Array.prototype[0] === 11), actually " + Array.prototype[0]);
|
2018-02-15 21:33:45 +01:00
|
|
|
}
|
|
|
|
if (typeof arrObj[0] !== "undefined") {
|
2021-07-28 22:50:06 +02:00
|
|
|
throw new Test262Error("Expected typeof arrObj[0] === 'undefined'), actually " + typeof arrObj[0]);
|
2018-02-15 21:33:45 +01:00
|
|
|
}
|
2014-11-12 14:41:09 +01:00
|
|
|
|
|
|
|
} finally {
|
2018-02-15 21:33:45 +01:00
|
|
|
delete Array.prototype[0];
|
2014-11-12 14:41:09 +01:00
|
|
|
}
|