tor-browser

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

argument-string-sub-minute-offset.js (581B)


      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.from
      7 description: >
      8  ISO strings cannot have sub-minute UTC offset as a time zone identifier
      9 features: [Temporal]
     10 ---*/
     11 
     12 const str = "2021-08-19T17:30:45.123456789-12:12:59.9[-12:12:59.9]";
     13 assert.throws(RangeError, () => Temporal.ZonedDateTime.from(str), `${str} is not a valid ISO string`);
     14 
     15 reportCompare(0, 0);