tor-browser

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

prop-desc.js (542B)


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