Bug 1885337 - Part 3: Import tests from test262 PR. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / prs / 3994 / built-ins / Uint8Array / prototype / toHex / detached-buffer.js
blobe0126f67259c49725f66b3a80eeae2197c2eb08f
1 // |reftest| shell-option(--enable-uint8array-base64) skip-if(!Uint8Array.fromBase64||!xulRuntime.shell) -- uint8array-base64 is not enabled unconditionally, requires shell-options
2 // Copyright (C) 2024 Kevin Gibbons. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-uint8array.prototype.tohex
6 description: Uint8Array.prototype.toHex throws if called on a detached buffer
7 includes: [detachArrayBuffer.js]
8 features: [uint8array-base64, TypedArray]
9 ---*/
11 var array = new Uint8Array(2);
12 $DETACHBUFFER(array.buffer);
13 assert.throws(TypeError, function() {
14   array.toHex();
15 });
18 reportCompare(0, 0);