tor-browser

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

timezone-case-insensitive.js (583B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2022 Igalia, S.L. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 esid: sec-temporal.zoneddatetime.prototype.from
      7 description: Time zone names are case insensitive
      8 features: [Temporal]
      9 ---*/
     10 
     11 const timeZone = 'uTc';
     12 const result = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone });
     13 assert.sameValue(result.timeZoneId, 'UTC', `Time zone created from string "${timeZone}"`);
     14 
     15 reportCompare(0, 0);