tor-browser

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

extensible.js (491B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2021 the V8 project authors. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 /*---
      5 esid: sec-temporal.now.instant
      6 description: Temporal.Now.instant is extensible.
      7 features: [Temporal]
      8 ---*/
      9 
     10 assert(
     11  Object.isExtensible(Temporal.Now.instant),
     12  'Object.isExtensible(Temporal.Now.instant) must return true'
     13 );
     14 
     15 reportCompare(0, 0);