tor-browser

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

prop-desc.js (578B)


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