tor-browser

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

prop-desc.js (720B)


      1 // Copyright (C) 2021 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-intl.supportedvaluesof
      6 description: >
      7  Intl.supportedValuesOf property attributes.
      8 info: |
      9  Intl.supportedValuesOf ( key )
     10 
     11  18 ECMAScript Standard Built-in Objects:
     12    Every other data property described in clauses 19 through 28 and in Annex B.2
     13    has the attributes { [[Writable]]: true, [[Enumerable]]: false,
     14    [[Configurable]]: true } unless otherwise specified.
     15 includes: [propertyHelper.js]
     16 features: [Intl-enumeration]
     17 ---*/
     18 
     19 verifyProperty(Intl, "supportedValuesOf", {
     20  writable: true,
     21  enumerable: false,
     22  configurable: true,
     23 });
     24 
     25 reportCompare(0, 0);