Backed out 2 changesets (bug 1888310, bug 1884625) for causing failures on browser_ap...
[gecko.git] / js / src / tests / test262 / built-ins / Math / f16round / prop-desc.js
blob9395f4d4de83e1b361e83a7d4fa506b3112f161e
1 // |reftest| skip -- Float16Array is not supported
2 // Copyright (C) 2024 Kevin Gibbons. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
5 /*---
6 esid: sec-math.f16round
7 description: >
8   "f16round" property of Math
9 features: [Float16Array]
10 includes: [propertyHelper.js]
11 ---*/
13 verifyNotEnumerable(Math, "f16round");
14 verifyWritable(Math, "f16round");
15 verifyConfigurable(Math, "f16round");
17 reportCompare(0, 0);