1 // Copyright (c) 2012 Ecma International. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
7 Object.freeze - 'P' is own index property of a String object that
8 implements its own [[GetOwnProperty]]
9 includes: [propertyHelper.js]
13 // default [[Configurable]] attribute value of "0": true
14 var strObj = new String("abc");
16 Object.freeze(strObj);
18 verifyNotWritable(strObj, "0");
19 verifyNotConfigurable(strObj, "0");
21 assert.sameValue(strObj[0], "a");