tor-browser

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

constructor.js (532B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2021 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
      7 description: Temporal.ZonedDateTime constructor cannot be called as a function
      8 info: |
      9    1. If NewTarget is undefined, throw a TypeError exception.
     10 features: [Temporal]
     11 ---*/
     12 
     13 assert.throws(TypeError, () => Temporal.ZonedDateTime(0n, "UTC"));
     14 
     15 reportCompare(0, 0);