tor-browser

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

argument-non-string.js (843B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2020 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.duration.from
      7 description: Appropriate error thrown if primitive input cannot convert to a valid string
      8 features: [Temporal]
      9 ---*/
     10 
     11 assert.throws(TypeError, () => Temporal.Duration.from(undefined), "undefined");
     12 assert.throws(TypeError, () => Temporal.Duration.from(null), "null");
     13 assert.throws(TypeError, () => Temporal.Duration.from(true), "boolean");
     14 assert.throws(TypeError, () => Temporal.Duration.from(Symbol()), "Symbol");
     15 assert.throws(TypeError, () => Temporal.Duration.from(5), "number");
     16 assert.throws(TypeError, () => Temporal.Duration.from(5n), "bigint");
     17 
     18 reportCompare(0, 0);