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