tor-browser

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

argument-propertybag-timezone-string-sub-minute-offset.js (1024B)


      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.compare
      7 description: >
      8  Time zone parsing from ISO strings does not accept sub-minute UTC offset as
      9  time zone identifier
     10 features: [Temporal]
     11 ---*/
     12 
     13 const instance = new Temporal.ZonedDateTime(1588371240_000_000_000n, "+01:46");
     14 
     15 for (const timeZone of ["-12:12:59.9", "2021-08-19T17:30:45.123456789-12:12:59.9[-12:12:59.9]"]) {
     16  assert.throws(
     17    RangeError,
     18    () => Temporal.ZonedDateTime.compare({ year: 2020, month: 5, day: 2, timeZone }, instance),
     19    `${timeZone} is not a valid time zone string (first argument)`
     20  );
     21  assert.throws(
     22    RangeError,
     23    () => Temporal.ZonedDateTime.compare(instance, { year: 2020, month: 5, day: 2, timeZone }),
     24    `${timeZone} is not a valid time zone string (second argument)`
     25  );
     26 }
     27 
     28 reportCompare(0, 0);