tor-browser

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

prop-desc.js (580B)


      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 esid: sec-math.atan
      5 description: >
      6  "atan" property of Math
      7 info: |
      8  Section 17: Every other data property described in clauses 18 through 26
      9  and in Annex B.2 has the attributes { [[Writable]]: true,
     10  [[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified.
     11 includes: [propertyHelper.js]
     12 ---*/
     13 
     14 verifyProperty(Math, "atan", {
     15  writable: true,
     16  enumerable: false,
     17  configurable: true
     18 });
     19 
     20 reportCompare(0, 0);