Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperty / 15.2.3.6-4-190.js
blobe9f7f17e6af57330eac89c867ca0824e603074f6
1 // Copyright (c) 2012 Ecma International.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 es5id: 15.2.3.6-4-190
6 description: >
7     Object.defineProperty - 'O' is an Array, 'name' is an array index
8     named property, 'name' is own data property, test TypeError is
9     thrown on updating the configurable attribute from false to true
10     (15.4.5.1 step 4.c)
11 includes: [propertyHelper.js]
12 ---*/
14 var arrObj = [];
16 Object.defineProperty(arrObj, 0, {
17   value: "ownDataProperty",
18   configurable: false
19 });
21 try {
22   Object.defineProperty(arrObj, 0, {
23     configurable: true
24   });
25   throw new Test262Error("Expected an exception.");
26 } catch (e) {
27   verifyEqualTo(arrObj, "0", "ownDataProperty");
29   verifyNotWritable(arrObj, "0");
31   verifyNotEnumerable(arrObj, "0");
33   verifyNotConfigurable(arrObj, "0");
35   if (!(e instanceof TypeError)) {
36     throw new Test262Error("Expected TypeError, got " + e);
37   }
40 reportCompare(0, 0);