blob: dcefdd01178433007d15c750d532fe64b4d555aa [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// Copyright (c) 2012 Ecma International. All rights reserved.
2// This code is governed by the BSD license found in the LICENSE file.
3
4/*---
5es5id: 15.2.3.6-4-347
6description: >
7 ES5 Attributes - property ([[Writable]] is true, [[Enumerable]] is
8 false, [[Configurable]] is false) is writable
9---*/
10
11 var obj = {};
12
13 Object.defineProperty(obj, "prop", {
14 value: 2010,
15 writable: true,
16 enumerable: false,
17 configurable: false
18 });
19 var propertyDefineCorrect = (obj.prop === 2010);
20 obj.prop = 1001;
21
22assert(propertyDefineCorrect, 'propertyDefineCorrect !== true');
23assert.sameValue(obj.prop, 1001, 'obj.prop');