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-12.js (556B)


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