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-4-375.js
blobb41c9513e2d69f2ce8d0e3066d218920b928006a
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-4-375
6 description: >
7     ES5 Attributes - property ([[Writable]] is false, [[Enumerable]]
8     is false, [[Configurable]] is false) is unwritable
9 includes: [propertyHelper.js]
10 ---*/
12 var obj = {};
14 Object.defineProperty(obj, "prop", {
15   value: 2010,
16   writable: false,
17   enumerable: false,
18   configurable: false
19 });
21 assert.sameValue(obj.prop, 2010);
22 verifyNotWritable(obj, "prop");
24 reportCompare(0, 0);