tor-browser

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

prop-desc.js (494B)


      1 // Copyright (C) 2019 Bocoup. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-value-properties-of-the-global-object-nan
      6 description: Property descriptor of NaN
      7 info: |
      8  This property has the attributes { [[Writable]]: false, [[Enumerable]]:
      9  false, [[Configurable]]: false }.
     10 includes: [propertyHelper.js]
     11 ---*/
     12 
     13 verifyProperty(this, "NaN", {
     14  enumerable: false,
     15  writable: false,
     16  configurable: false
     17 });
     18 
     19 reportCompare(0, 0);