tor-browser

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

basic.js (541B)


      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.plainyearmonth
      7 description: PlainYearMonth constructor works
      8 includes: [temporalHelpers.js]
      9 features: [Temporal]
     10 ---*/
     11 
     12 const ym = new Temporal.PlainYearMonth(1976, 11);
     13 assert.sameValue(typeof ym, "object");
     14 TemporalHelpers.assertPlainYearMonth(ym, 1976, 11, "M11");
     15 
     16 reportCompare(0, 0);