2014-07-22 01:09:02 +02:00
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
2015-07-17 17:42:45 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
2014-07-22 01:09:02 +02:00
|
|
|
|
|
|
|
/*---
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.2.3.9-2-b-i-1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Object.freeze - The [[Wrtiable]] attribute of own data property of
|
|
|
|
'O' is set to false while other attributes are unchanged
|
2014-11-12 14:41:09 +01:00
|
|
|
includes: [propertyHelper.js]
|
2014-07-22 01:09:02 +02:00
|
|
|
---*/
|
|
|
|
|
2014-11-12 14:41:09 +01:00
|
|
|
var obj = {};
|
2014-07-22 01:09:02 +02:00
|
|
|
|
2014-11-12 14:41:09 +01:00
|
|
|
Object.defineProperty(obj, "foo", {
|
2018-02-15 21:33:45 +01:00
|
|
|
value: 10,
|
|
|
|
writable: true,
|
|
|
|
enumerable: true,
|
|
|
|
configurable: false
|
2014-11-12 14:41:09 +01:00
|
|
|
});
|
2014-07-22 01:09:02 +02:00
|
|
|
|
2014-11-12 14:41:09 +01:00
|
|
|
Object.freeze(obj);
|
|
|
|
var desc = Object.getOwnPropertyDescriptor(obj, "foo");
|
|
|
|
|
|
|
|
verifyEqualTo(obj, "foo", 10);
|
|
|
|
|
|
|
|
verifyNotWritable(obj, "foo");
|
|
|
|
|
|
|
|
verifyEnumerable(obj, "foo");
|
|
|
|
|
|
|
|
verifyNotConfigurable(obj, "foo");
|
|
|
|
|
|
|
|
if (desc.writable !== false) {
|
2018-02-15 21:33:45 +01:00
|
|
|
$ERROR('Expected desc.writable === false, actually ' + desc.writable);
|
2014-11-12 14:41:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (desc.configurable !== false) {
|
2018-02-15 21:33:45 +01:00
|
|
|
$ERROR('Expected desc.configurable === false, actually ' + desc.configurable);
|
2014-11-12 14:41:09 +01:00
|
|
|
}
|