Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperties / 15.2.3.7-6-a-77.js
blob4be63a9fc3994245236c2c465e6d93f550b3be53
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.7-6-a-77
6 description: >
7     Object.defineProperties throws TypeError when P.configurable is
8     false, P.writalbe is false, properties.value is +0 and P.value is
9     -0 (8.12.9 step 10.a.ii.1)
10 includes: [propertyHelper.js]
11 ---*/
14 var obj = {};
16 Object.defineProperty(obj, "foo", {
17   value: +0,
18   writable: false,
19   configurable: false
20 });
22 try {
23   Object.defineProperties(obj, {
24     foo: {
25       value: -0
26     }
27   });
28   throw new Test262Error("Expected an exception.");
29 } catch (e) {
30   verifyEqualTo(obj, "foo", +0);
32   verifyNotWritable(obj, "foo");
34   verifyNotEnumerable(obj, "foo");
36   verifyNotConfigurable(obj, "foo");
38   if (!(e instanceof TypeError)) {
39     throw new Test262Error("Expected TypeError, got " + e);
40   }
44 reportCompare(0, 0);