tor-browser

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

basic.js (544B)


      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: Basic tests for the PlainTime constructor.
      8 includes: [temporalHelpers.js]
      9 features: [Temporal]
     10 ---*/
     11 
     12 const args = [15, 23, 30, 123, 456, 789];
     13 const plainTime = new Temporal.PlainTime(...args);
     14 TemporalHelpers.assertPlainTime(plainTime, ...args);
     15 
     16 reportCompare(0, 0);