tor-browser

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

missing-arguments.js (713B)


      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.plainyearmonth
      7 description: RangeError thrown after processing given args when invoked without all required args
      8 includes: [compareArray.js]
      9 features: [Temporal]
     10 ---*/
     11 
     12 const expected = [
     13  "valueOf year",
     14 ];
     15 const actual = [];
     16 const args = [
     17  { valueOf() { actual.push("valueOf year"); return 1; } },
     18 ];
     19 
     20 assert.throws(RangeError, () => new Temporal.PlainYearMonth(...args));
     21 assert.compareArray(actual, expected, "order of operations");
     22 
     23 reportCompare(0, 0);