tor-browser

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

calendar-undefined.js (722B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2020 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.plaindatetime
      7 description: Calendar argument defaults to the built-in ISO 8601 calendar
      8 features: [Temporal]
      9 ---*/
     10 
     11 const dateTimeArgs = [2020, 12, 24, 12, 34, 56, 123, 456, 789];
     12 
     13 const dateTimeExplicit = new Temporal.PlainDateTime(...dateTimeArgs, undefined);
     14 assert.sameValue(dateTimeExplicit.calendarId, "iso8601");
     15 
     16 const dateTimeImplicit = new Temporal.PlainDateTime(...dateTimeArgs);
     17 assert.sameValue(dateTimeImplicit.calendarId, "iso8601");
     18 
     19 reportCompare(0, 0);