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-90.js
bloba6c7d008c14104000490a813aaf189e268853933
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-90
6 description: >
7     Object.defineProperties will not throw TypeError when
8     P.configurable is false, both properties.[[Get]] and P.[[Get]] are
9     two objects which refer to the same object (8.12.9 step 11.a.ii)
10 includes: [propertyHelper.js]
11 ---*/
14 var obj = {};
16 function set_func(value) {
17   obj.setVerifyHelpProp = value;
20 function get_func() {
21   return 10;
24 Object.defineProperty(obj, "foo", {
25   get: get_func,
26   set: set_func,
27   enumerable: false,
28   configurable: false
29 });
31 Object.defineProperties(obj, {
32   foo: {
33     get: get_func
34   }
35 });
36 verifyEqualTo(obj, "foo", get_func());
38 verifyWritable(obj, "foo", "setVerifyHelpProp");
40 verifyProperty(obj, "foo", {
41   enumerable: false,
42   configurable: false,
43 });
45 reportCompare(0, 0);