tor-browser

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

argument-propertybag-calendar-iso-string.js (967B)


      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.plaindate.from
      7 description: An ISO 8601 string can be converted to a calendar ID in Calendar
      8 includes: [temporalHelpers.js]
      9 features: [Temporal]
     10 ---*/
     11 
     12 for (const calendar of [
     13  "2020-01-01",
     14  "2020-01-01[u-ca=iso8601]",
     15  "2020-01-01T00:00:00.000000000",
     16  "2020-01-01T00:00:00.000000000[u-ca=iso8601]",
     17  "01-01",
     18  "01-01[u-ca=iso8601]",
     19  "2020-01",
     20  "2020-01[u-ca=iso8601]",
     21 ]) {
     22  const arg = { year: 1976, monthCode: "M11", day: 18, calendar };
     23  const result = Temporal.PlainDate.from(arg);
     24  TemporalHelpers.assertPlainDate(result, 1976, 11, "M11", 18, `Calendar created from string "${calendar}"`);
     25  assert.sameValue(result.calendarId, "iso8601", "calendar string is iso8601");
     26 }
     27 
     28 reportCompare(0, 0);