tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

15.2.3.7-6-a-65.js (821B)


      1 // Copyright (c) 2012 Ecma International.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es5id: 15.2.3.7-6-a-65
      6 description: >
      7    Object.defineProperties throws TypeError when P.configurable is
      8    false and desc.configurable is true (8.12.9 step 7.a)
      9 includes: [propertyHelper.js]
     10 ---*/
     11 
     12 
     13 var obj = {};
     14 
     15 Object.defineProperty(obj, "foo", {
     16  value: 10,
     17  configurable: false
     18 });
     19 
     20 try {
     21  Object.defineProperties(obj, {
     22    foo: {
     23      configurable: true
     24    }
     25  });
     26  throw new Test262Error("Expected an exception.");
     27 } catch (e) {
     28  if (!(e instanceof TypeError)) {
     29    throw new Test262Error("Expected TypeError, got " + e);
     30  }
     31 }
     32 
     33 verifyProperty(obj, "foo", {
     34  value: 10,
     35  writable: false,
     36  enumerable: false,
     37  configurable: false,
     38 });
     39 
     40 reportCompare(0, 0);