tor-browser

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

timezone-iso-string.js (591B)


      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.constructor
      7 description: An ISO string is not valid input for a constructor's time zone param
      8 features: [Temporal]
      9 ---*/
     10 
     11 assert.throws(
     12  RangeError,
     13  () => new Temporal.ZonedDateTime(0n, "1997-12-04T12:34[+01:00]", "iso8601"),
     14  "An ISO string is not a valid calendar ID for constructor parameter"
     15 );
     16 
     17 reportCompare(0, 0);