tor-browser

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

prop-desc.js (389B)


      1 // Copyright (C) 2024 Kevin Gibbons. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-math.f16round
      6 description: >
      7  "f16round" property of Math
      8 features: [Float16Array]
      9 includes: [propertyHelper.js]
     10 ---*/
     11 
     12 verifyProperty(Math, "f16round", {
     13  writable: true,
     14  enumerable: false,
     15  configurable: true,
     16 });
     17 
     18 reportCompare(0, 0);