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 (586B)


      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: 12.1.1_a
      6 description: >
      7    Tests that constructing a DateTimeFormat 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.DateTimeFormat("de-DE-u-ca-gregory");
     15 });
     16 
     17 testForUnwantedRegExpChanges(function () {
     18    new Intl.DateTimeFormat("de-DE-u-ca-gregory", {timeZone: "UTC"});
     19 });
     20 
     21 reportCompare(0, 0);