tor-browser

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

one-of-era-erayear-undefined.js (695B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2023 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.from
      7 description: Throw a TypeError if only one of era/eraYear fields is present
      8 features: [Temporal]
      9 ---*/
     10 
     11 const base = { year: 2000, month: 5, day: 2, era: "ce", calendar: "gregory" };
     12 assert.throws(TypeError, () => Temporal.PlainYearMonth.from(base));
     13 
     14 const base2 = { year: 2000, month: 5, day: 2, eraYear: 1, calendar: "gregory" };
     15 assert.throws(TypeError, () => Temporal.PlainYearMonth.from(base2));
     16 
     17 reportCompare(0, 0);