Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperties / 15.2.3.7-6-a-63.js
blobc88d34a3d9c305f01503e30d0ce15a4f684ab567
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.7-6-a-63
6 description: >
7     Object.defineProperties - both desc.configurable and
8     P.configurable are boolean values with the same value (8.12.9 step
9     6)
10 includes: [propertyHelper.js]
11 ---*/
14 var obj = {};
16 Object.defineProperty(obj, "foo", {
17   value: 10,
18   configurable: false
19 });
21 Object.defineProperties(obj, {
22   foo: {
23     configurable: false
24   }
25 });
27 verifyProperty(obj, "foo", {
28   value: 10,
29   writable: false,
30   enumerable: false,
31   configurable: false,
32 });
34 reportCompare(0, 0);