tor-browser

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

options-object.js (644B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2022 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.duration.prototype.compare
      7 description: Empty object may be used as options
      8 features: [Temporal]
      9 ---*/
     10 
     11 assert.sameValue(
     12  Temporal.Duration.compare({ hours: 1 }, { minutes: 60 }, {}), 0,
     13  "options may be an empty plain object"
     14 );
     15 
     16 assert.sameValue(
     17  Temporal.Duration.compare({ hours: 1 }, { minutes:60 }, () => {}), 0,
     18  "options may be an empty function object"
     19 );
     20 
     21 reportCompare(0, 0);