tor-browser

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

length.js (462B)


      1 // Copyright (C) 2017 Aleksey Shvayka. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-symbol-constructor
      6 description: >
      7  Properties of the Symbol Constructor
      8 
      9  Besides the length property (whose value is 0)
     10 
     11 includes: [propertyHelper.js]
     12 features: [Symbol]
     13 ---*/
     14 
     15 verifyProperty(Symbol, "length", {
     16  value: 0,
     17  writable: false,
     18  enumerable: false,
     19  configurable: true
     20 });
     21 
     22 reportCompare(0, 0);