tor-browser

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

bad-disambiguation.js (550B)


      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: Throw on bad value for disambiguation
      8 features: [Temporal]
      9 ---*/
     10 
     11 [
     12  "",
     13  "EARLIER",
     14  "balance"
     15 ].forEach(disambiguation => {
     16  assert.throws(RangeError, () => Temporal.ZonedDateTime.from("2020-11-01T04:00[-08:00]", { disambiguation }));
     17 });
     18 
     19 reportCompare(0, 0);