tor-browser

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

prop-desc.js (484B)


      1 // Copyright (C) 2017 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-math.log2e
      6 description: >
      7  "LOG2E" property of Math
      8 info: |
      9  This property has the attributes { [[Writable]]: false, [[Enumerable]]:
     10  false, [[Configurable]]: false }.
     11 includes: [propertyHelper.js]
     12 ---*/
     13 
     14 verifyProperty(Math, 'LOG2E', {
     15  writable: false,
     16  enumerable: false,
     17  configurable: false,
     18 });
     19 
     20 reportCompare(0, 0);