���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/fixtures/wpt/encoding/streams/ |
// META: global=worker // META: script=resources/readable-stream-from-array.js // META: script=resources/readable-stream-to-array.js 'use strict'; const inputBytes = [229]; promise_test(async () => { const input = readableStreamFromArray([new Uint8Array(inputBytes)]); const output = input.pipeThrough(new TextDecoderStream()); const array = await readableStreamToArray(output); assert_array_equals(array, ['\uFFFD'], 'array should have one element'); }, 'incomplete input with error mode "replacement" should end with a ' + 'replacement character'); promise_test(async t => { const input = readableStreamFromArray([new Uint8Array(inputBytes)]); const output = input.pipeThrough(new TextDecoderStream( 'utf-8', {fatal: true})); const reader = output.getReader(); await promise_rejects(t, new TypeError(), reader.read(), 'read should reject'); }, 'incomplete input with error mode "fatal" should error the stream');