tor-browser

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

prop-desc.js (568B)


      1 // Copyright (C) 2018 Peter Wong. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 esid: pending
      5 description: |
      6    `Symbol.matchAll` property descriptor
      7 info: |
      8    This property has the attributes { [[Writable]]: false, [[Enumerable]]:
      9    false, [[Configurable]]: false }.
     10 includes: [propertyHelper.js]
     11 features: [Symbol.matchAll]
     12 ---*/
     13 
     14 assert.sameValue(typeof Symbol.matchAll, 'symbol');
     15 verifyProperty(Symbol, 'matchAll', {
     16  writable: false,
     17  enumerable: false,
     18  configurable: false,
     19 });
     20 
     21 reportCompare(0, 0);