tor-browser

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

argument-propertybag-calendar-leap-second.js (896B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2022 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.plainyearmonth.compare
      7 description: Leap second is a valid ISO string for a calendar in a property bag
      8 features: [Temporal]
      9 ---*/
     10 
     11 const calendar = "2016-12-31T23:59:60";
     12 
     13 const arg = { year: 2019, monthCode: "M06", calendar };
     14 const result1 = Temporal.PlainYearMonth.compare(arg, new Temporal.PlainYearMonth(2019, 6));
     15 assert.sameValue(
     16  result1,
     17  0,
     18  "leap second is a valid ISO string for calendar (first argument)"
     19 );
     20 const result2 = Temporal.PlainYearMonth.compare(new Temporal.PlainYearMonth(2019, 6), arg);
     21 assert.sameValue(
     22  result2,
     23  0,
     24  "leap second is a valid ISO string for calendar (second argument)"
     25 );
     26 
     27 reportCompare(0, 0);