tor-browser

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

canonicalize-calendar.js (530B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2024 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
      7 description: Calendar ID is canonicalized
      8 features: [Temporal]
      9 ---*/
     10 
     11 const result = new Temporal.ZonedDateTime(1719923640_000_000_000n, "UTC", "islamicc");
     12 assert.sameValue(result.calendarId, "islamic-civil", "calendar ID is canonicalized");
     13 
     14 reportCompare(0, 0);