Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / freeze / 15.2.3.9-2-a-13.js
blobc4d1fa96be05e6ce37007e9d6b23c09c99ad3106
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.9-2-a-13
6 description: Object.freeze - 'P' is own index property of the Object
7 includes: [propertyHelper.js]
8 ---*/
11 // default [[Configurable]] attribute value of "0": true
12 var obj = {
13   0: 0,
14   1: 1,
15   length: 2
18 Object.freeze(obj);
20 verifyNotWritable(obj, "0");
21 verifyNotConfigurable(obj, "0");
23 assert.sameValue(obj[0], 0);
25 reportCompare(0, 0);