tor-browser

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

relativeto-year.js (697B)


      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.duration.compare
      7 description: relativeTo with years.
      8 features: [Temporal]
      9 ---*/
     10 
     11 const oneYear = new Temporal.Duration(1);
     12 const days365 = new Temporal.Duration(0, 0, 0, 365);
     13 assert.sameValue(
     14  Temporal.Duration.compare(oneYear, days365, { relativeTo: Temporal.PlainDate.from("2017-01-01") }), 0);
     15 assert.sameValue(
     16  Temporal.Duration.compare(oneYear, days365, { relativeTo: Temporal.PlainDate.from("2016-01-01") }), 1);
     17 
     18 reportCompare(0, 0);