tor-browser

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

argument-string-with-utc-designator.js (707B)


      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.plainyearmonth.from
      7 description: RangeError thrown if a string with UTC designator is used as a PlainYearMonth
      8 features: [Temporal, arrow-function]
      9 ---*/
     10 
     11 const invalidStrings = [
     12  "2019-10-01T09:00:00Z",
     13  "2019-10-01T09:00:00Z[UTC]",
     14 ];
     15 invalidStrings.forEach((arg) => {
     16  assert.throws(
     17    RangeError,
     18    () => Temporal.PlainYearMonth.from(arg),
     19    "String with UTC designator should not be valid as a PlainYearMonth"
     20  );
     21 });
     22 
     23 reportCompare(0, 0);