tor-browser

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

microsecond-undefined.js (688B)


      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.plaintime
      7 description: Microsecond argument defaults to 0 if not given
      8 includes: [temporalHelpers.js]
      9 features: [Temporal]
     10 ---*/
     11 
     12 const args = [12, 34, 56, 123];
     13 
     14 const explicit = new Temporal.PlainTime(...args, undefined);
     15 TemporalHelpers.assertPlainTime(explicit, ...args, 0, 0, "explicit");
     16 
     17 const implicit = new Temporal.PlainTime(...args);
     18 TemporalHelpers.assertPlainTime(implicit, ...args, 0, 0, "implicit");
     19 
     20 reportCompare(0, 0);