tor-browser

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

prop-desc.js (618B)


      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.duration.from
      7 description: The "from" property of Temporal.Duration
      8 includes: [propertyHelper.js]
      9 features: [Temporal]
     10 ---*/
     11 
     12 assert.sameValue(
     13  typeof Temporal.Duration.from,
     14  "function",
     15  "`typeof Duration.from` is `function`"
     16 );
     17 
     18 verifyProperty(Temporal.Duration, "from", {
     19  writable: true,
     20  enumerable: false,
     21  configurable: true,
     22 });
     23 
     24 reportCompare(0, 0);