Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperties / 15.2.3.7-5-b-150.js
blob4c4b1717dc865f4de3b68d3d9369ee1683a8688e
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-5-b-150
6 description: >
7     Object.defineProperties - 'writable' property of 'descObj' is
8     inherited accessor property without a get function (8.10.5 step
9     6.a)
10 includes: [propertyHelper.js]
11 ---*/
13 var obj = {};
15 var proto = {};
17 Object.defineProperty(proto, "writable", {
18   set: function() {}
19 });
21 var Con = function() {};
22 Con.prototype = proto;
24 var descObj = new Con();
26 Object.defineProperties(obj, {
27   property: descObj
28 });
30 assert(obj.hasOwnProperty("property"));
31 verifyNotWritable(obj, "property");
33 reportCompare(0, 0);