Backed out 2 changesets (bug 1888310, bug 1884625) for causing failures on browser_ap...
[gecko.git] / js / src / tests / test262 / built-ins / DataView / prototype / getFloat16 / length.js
blob2d97a026cd52637e55cddd64b57b6168d42ac796
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-dataview.prototype.getfloat16
7 description: >
8   DataView.prototype.getFloat16.length is 1.
9 features: [Float16Array]
10 includes: [propertyHelper.js]
11 ---*/
13 verifyProperty(DataView.prototype.getFloat16, "length", {
14   value: 1,
15   writable: false,
16   enumerable: false,
17   configurable: true
18 });
20 reportCompare(0, 0);