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-3-178.js
blob42ab36b42275a382522aa165f5b8d3af929137d8
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-3-178
6 description: >
7     Object.defineProperty - 'writable' property in 'Attributes' is
8     undefined  (8.10.5 step 6.b)
9 includes: [propertyHelper.js]
10 ---*/
12 var obj = {};
14 Object.defineProperty(obj, "property", {
15   writable: undefined
16 });
18 assert(obj.hasOwnProperty("property"));
19 verifyNotWritable(obj, "property");
21 reportCompare(0, 0);