tor-browser

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

arguments.js (443B)


      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.supportedLocalesOf
      6 description: >
      7    Tests that Intl.PluralRules.supportedLocalesOf doesn't access
      8    arguments that it's not given.
      9 author: Zibi Braniecki
     10 includes: [testIntl.js]
     11 ---*/
     12 
     13 taintDataProperty(Object.prototype, "1");
     14 new Intl.PluralRules("und");
     15 
     16 reportCompare(0, 0);