tor-browser

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

argument-propertybag-required-prop-undefined-throws.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.zoneddatetime.from
      7 description: from() throws if a required property is undefined.
      8 features: [Temporal]
      9 ---*/
     10 
     11 assert.throws(TypeError, () => Temporal.ZonedDateTime.from({
     12  year: 1976,
     13  month: undefined,
     14  monthCode: undefined,
     15  day: 18,
     16  timeZone: "+01:00"
     17 }));
     18 
     19 
     20 reportCompare(0, 0);