summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/DataView/prototype/setFloat16/index-check-before-value-conversion.js
blob: e1b2b18b35a27be12f8f2d14b31fff5da6df3a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// |reftest| shell-option(--enable-float16array) skip-if(!this.hasOwnProperty('Float16Array')||!xulRuntime.shell) -- Float16Array is not enabled unconditionally, requires shell-options
// Copyright (C) 2024 Kevin Gibbons. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-dataview.prototype.setfloat16
description: >
  RangeError exception for negative index is thrown before the value conversion.
features: [Float16Array]
---*/

var dataView = new DataView(new ArrayBuffer(8), 0);

var poisoned = {
  valueOf: function() {
    throw new Test262Error("valueOf called");
  }
};

assert.throws(RangeError, function() {
  dataView.setFloat16(-1.5, poisoned);
}, "setFloat16(-1.5, poisoned)");

assert.throws(RangeError, function() {
  dataView.setFloat16(-1, poisoned);
}, "setFloat16(-1, poisoned)");

assert.throws(RangeError, function() {
  dataView.setFloat16(-Infinity, poisoned);
}, "setFloat16(-Infinity, poisoned)");

assert.throws(RangeError, function() {
  dataView.setFloat16(Infinity, poisoned);
}, "setFloat16(Infinity, poisoned)");

reportCompare(0, 0);