tor-browser

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

observable-get-overflow-argument-string-invalid.js (770B)


      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.plaintime.from
      7 description: overflow property is not extracted with ISO-invalid string argument.
      8 includes: [compareArray.js, temporalHelpers.js]
      9 features: [Temporal]
     10 ---*/
     11 
     12 let actual = [];
     13 const object = {
     14  get overflow() {
     15    actual.push("get overflow");
     16    return TemporalHelpers.toPrimitiveObserver(actual, "constrain", "overflow");
     17  }
     18 };
     19 
     20 assert.throws(RangeError, () => Temporal.PlainTime.from("24:60", object));
     21 assert.compareArray(actual, [], "options read after ISO string parsing");
     22 
     23 reportCompare(0, 0);