tor-browser

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

relativeto-string-zoneddatetime.js (778B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2021 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: The relativeTo option accepts a ZonedDateTime-like ISO 8601 string
      8 features: [Temporal]
      9 ---*/
     10 
     11 [
     12  '2000-01-01[UTC]',
     13  '2000-01-01T00:00[UTC]',
     14  '2000-01-01T00:00+00:00[UTC]',
     15  '2000-01-01T00:00+00:00[UTC][u-ca=iso8601]',
     16 ].forEach((relativeTo) => {
     17  const duration1 = new Temporal.Duration(0, 0, 0, 31);
     18  const duration2 = new Temporal.Duration(0, 1);
     19  const result = Temporal.Duration.compare(duration1, duration2, { relativeTo });
     20  assert.sameValue(result, 0);
     21 });
     22 
     23 reportCompare(0, 0);