tor-browser

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

options-undefined.js (680B)


      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.from
      7 description: Verify that undefined options are handled correctly.
      8 features: [Temporal]
      9 ---*/
     10 
     11 const fields = { hour: 12, minute: 60 };
     12 
     13 const explicit = Temporal.PlainTime.from(fields, undefined);
     14 assert.sameValue(explicit.minute, 59, "default overflow is constrain");
     15 
     16 const implicit = Temporal.PlainTime.from(fields);
     17 assert.sameValue(implicit.minute, 59, "default overflow is constrain");
     18 
     19 reportCompare(0, 0);