tor-browser

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

name.js (427B)


      1 // Copyright 2016 Mozilla Corporation. All rights reserved.
      2 // This code is governed by the license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-Intl.PluralRules
      6 description: Intl.PluralRules.name is "PluralRules"
      7 author: Zibi Braniecki
      8 includes: [propertyHelper.js]
      9 ---*/
     10 
     11 verifyProperty(Intl.PluralRules, 'name', {
     12  value: 'PluralRules',
     13  writable: false,
     14  enumerable: false,
     15  configurable: true
     16 });
     17 
     18 reportCompare(0, 0);