tor-browser

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

prop-desc.js (363B)


      1 // Copyright 2015 Microsoft Corporation. All rights reserved.
      2 // This code is governed by the license found in the LICENSE file.
      3 
      4 /*---
      5 description: Testing descriptor property of Math.trunc
      6 includes: [propertyHelper.js]
      7 es6id: 20.2.2.35
      8 ---*/
      9 
     10 verifyProperty(Math, "trunc", {
     11  writable: true,
     12  enumerable: false,
     13  configurable: true
     14 });
     15 
     16 reportCompare(0, 0);