1 // Copyright (c) 2012 Ecma International. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
6 description: Object.freeze - 'P' is own index property of the Object
7 includes: [propertyHelper.js]
11 // default [[Configurable]] attribute value of "0": true
20 verifyNotWritable(obj, "0");
21 verifyNotConfigurable(obj, "0");
23 assert.sameValue(obj[0], 0);