tor-browser

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

argument-number.js (639B)


      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.plainmonthday.from
      7 description: A number is invalid in place of an ISO string for Temporal.PlainMonthDay
      8 features: [Temporal]
      9 ---*/
     10 
     11 const numbers = [
     12  1,
     13  1118,
     14  -1118,
     15  12345,
     16 ];
     17 
     18 for (const arg of numbers) {
     19  assert.throws(
     20    TypeError,
     21    () => Temporal.PlainMonthDay.from(arg),
     22    `A number (${arg}) is not a valid ISO string for PlainMonthDay`
     23  );
     24 }
     25 
     26 reportCompare(0, 0);