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.
5 esid: sec-uint8array.fromhex
6 description: Uint8Array.fromHex throws if given an odd number of input hex characters
7 features: [uint8array-base64, TypedArray]
10 assert.throws(SyntaxError, function() {
11 Uint8Array.fromHex('a');