tor-browser

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

15.2.3.6-4-242-1.js (737B)


      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.6-4-242-1
      6 description: >
      7    Object.defineProperty - 'O' is an Array, 'name' is an array index
      8    named property,  'name' is data property and 'desc' is data
      9    descriptor, and the [[Configurable]] attribute value of 'name' is
     10    true, test 'name' is updated successfully (15.4.5.1 step 4.c)
     11 includes: [propertyHelper.js]
     12 ---*/
     13 
     14 
     15 var arrObj = [3];
     16 
     17 Object.defineProperty(arrObj, "0", {
     18  value: 1001,
     19  writable: false,
     20  enumerable: false
     21 });
     22 
     23 verifyProperty(arrObj, "0", {
     24  value: 1001,
     25  writable: false,
     26  enumerable: false,
     27  configurable: true,
     28 });
     29 
     30 reportCompare(0, 0);