tor-browser

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

prop-desc.js (503B)


      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.sqrt1_2
      6 description: >
      7  "SQRT1_2" 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 verifyNotEnumerable(Math, 'SQRT1_2');
     15 verifyNotWritable(Math, 'SQRT1_2');
     16 verifyNotConfigurable(Math, 'SQRT1_2');
     17 
     18 reportCompare(0, 0);