tor-browser

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

legacy-regexp-statics-not-modified.js (456B)


      1 // Copyright 2013 Mozilla Corporation. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es5id: 10.1.1_a
      6 description: >
      7    Tests that constructing a Collator doesn't create or modify
      8    unwanted properties on the RegExp constructor.
      9 author: Norbert Lindenberg
     10 includes: [testIntl.js]
     11 ---*/
     12 
     13 testForUnwantedRegExpChanges(function () {
     14    new Intl.Collator("de-DE-u-co-phonebk");
     15 });
     16 
     17 reportCompare(0, 0);