tor-browser

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

prop-desc.js (629B)


      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.zoneddatetimeiso
      6 description: The "zonedDateTimeISO" property of Temporal.Now
      7 includes: [propertyHelper.js]
      8 features: [Temporal]
      9 ---*/
     10 
     11 assert.sameValue(typeof Temporal.Now.zonedDateTimeISO, "function", "typeof is function");
     12 
     13 verifyProperty(Temporal.Now, 'zonedDateTimeISO', {
     14  enumerable: false,
     15  writable: true,
     16  configurable: true
     17 });
     18 
     19 reportCompare(0, 0);