tor-browser

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

lower-limit.js (524B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2018 Bloomberg LP. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 includes: [temporalHelpers.js]
      7 esid: sec-temporal.duration
      8 description: Minimum value is zero.
      9 features: [Temporal]
     10 ---*/
     11 
     12 TemporalHelpers.assertDuration(new Temporal.Duration(0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
     13                               0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
     14 
     15 reportCompare(0, 0);