tor-browser

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

argument-propertybag-calendar-invalid-iso-string.js (708B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2025 Brage Hogstad, University of Bergen. 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: Various invalid ISO string values for calendar in a property bag
      8 features: [Temporal]
      9 ---*/
     10 
     11 const invalidStrings = [
     12 ["", "empty string"],
     13 ];
     14 
     15 for (const [calendar, description] of invalidStrings) {
     16 const arg = { monthCode: "M11", day: 18, calendar };
     17 assert.throws(
     18 	RangeError,
     19 	() => Temporal.PlainMonthDay.from(arg),
     20 	`${description} is not a valid calendar ID`
     21 );
     22 }
     23 
     24 reportCompare(0, 0);