From 59203c63bb777a3bacec32fb8830fba33540e809 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 12 Jun 2024 07:35:29 +0200 Subject: Adding upstream version 127.0. Signed-off-by: Daniel Baumann --- .../compression/decompression-buffersource.tentative.any.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'testing/web-platform/tests/compression') diff --git a/testing/web-platform/tests/compression/decompression-buffersource.tentative.any.js b/testing/web-platform/tests/compression/decompression-buffersource.tentative.any.js index e81fc56677..abb51751c8 100644 --- a/testing/web-platform/tests/compression/decompression-buffersource.tentative.any.js +++ b/testing/web-platform/tests/compression/decompression-buffersource.tentative.any.js @@ -47,6 +47,10 @@ const bufferSourceChunksForDeflate = [ name: 'Uint32Array', value: new Uint32Array(new Uint8Array(compressedBytesWithDeflate).buffer) }, + { + name: 'Float16Array', + value: new Float16Array(new Uint8Array(compressedBytesWithDeflate).buffer) + }, { name: 'Float32Array', value: new Float32Array(new Uint8Array(compressedBytesWithDeflate).buffer) @@ -94,6 +98,10 @@ const bufferSourceChunksForGzip = [ name: 'Uint32Array', value: new Uint32Array(new Uint8Array(compressedBytesWithGzip).buffer) }, + { + name: 'Float16Array', + value: new Float16Array(new Uint8Array(compressedBytesWithGzip).buffer) + }, { name: 'Float32Array', value: new Float32Array(new Uint8Array(compressedBytesWithGzip).buffer) @@ -141,6 +149,10 @@ const bufferSourceChunksForDeflateRaw = [ name: 'Uint32Array', value: new Uint32Array(new Uint8Array(compressedBytesWithDeflateRaw).buffer) }, + { + name: 'Float16Array', + value: new Float16Array(new Uint8Array(compressedBytesWithDeflateRaw).buffer) + }, { name: 'Float32Array', value: new Float32Array(new Uint8Array(compressedBytesWithDeflateRaw).buffer) -- cgit v1.2.3