tor-browser

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

15.2.3.9-2-a-14.js (540B)


      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.9-2-a-14
      6 description: >
      7    Object.freeze - 'P' is own index property of an Array object that
      8    uses Object's [[GetOwnProperty]]
      9 includes: [propertyHelper.js]
     10 ---*/
     11 
     12 // default [[Configurable]] attribute value of "0": true
     13 var arrObj = [0, 1, 2];
     14 
     15 Object.freeze(arrObj);
     16 
     17 verifyProperty(arrObj, "0", {
     18  value: 0,
     19  writable: false,
     20  configurable: false,
     21 });
     22 
     23 reportCompare(0, 0);