tor-browser

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

options-invalid.js (581B)


      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: TypeError thrown when a primitive is passed as the options argument
      8 features: [Temporal]
      9 ---*/
     10 
     11 const values = [null, true, "hello", Symbol("foo"), 1, 1n];
     12 
     13 for (const badOptions of values) {
     14  assert.throws(TypeError, () => Temporal.PlainTime.from({ hours: 12 }, badOptions));
     15 }
     16 
     17 reportCompare(0, 0);