tor-browser

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

name.js (420B)


      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  Math.f16round.name is "f16round"
      8 features: [Float16Array]
      9 includes: [propertyHelper.js]
     10 ---*/
     11 
     12 verifyProperty(Math.f16round, 'name', {
     13  value: 'f16round',
     14  enumerable: false,
     15  writable: false,
     16  configurable: true
     17 });
     18 
     19 reportCompare(0, 0);