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-275.js
blob7a13d69ddcf92f93ab0e4e85687a2dfee5dffd8b
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-275
6 description: >
7     Object.defineProperties - 'O' is an Array, 'P' is generic own
8     accessor property of 'O', test TypeError is thrown when updating
9     the [[Set]] attribute value of 'P' which is defined as
10     non-configurable (15.4.5.1 step 5)
11 includes: [propertyHelper.js]
12 ---*/
15 var arr = [];
17 function set_fun(value) {
18   arr.setVerifyHelpProp = value;
20 Object.defineProperty(arr, "property", {
21   set: set_fun
22 });
24 try {
25   Object.defineProperties(arr, {
26     "property": {
27       set: function() {}
28     }
29   });
30 } catch (e) {
31   verifyWritable(arr, "property", "setVerifyHelpProp");
33   if (!(e instanceof TypeError)) {
34     throw new Test262Error("Expected TypeError, got " + e);
35   }
38 verifyProperty(arr, "property", {
39   enumerable: false,
40   configurable: false,
41 });
43 reportCompare(0, 0);