tor-browser

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

timezone-string.js (575B)


      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.now.zoneddatetimeiso
      7 description: String calendar argument
      8 features: [Temporal]
      9 ---*/
     10 
     11 const zdt = Temporal.Now.zonedDateTimeISO("America/Los_Angeles");
     12 assert(zdt instanceof Temporal.ZonedDateTime);
     13 assert.sameValue(zdt.calendarId, "iso8601");
     14 assert.sameValue(zdt.timeZoneId, "America/Los_Angeles");
     15 
     16 reportCompare(0, 0);