mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision 2b7dace05fc1869398ee24f84fda4c0e4c0455ae
This commit is contained in:
parent
b23125d590
commit
6c901de216
844 changed files with 19802 additions and 3093 deletions
|
@ -0,0 +1,24 @@
|
|||
// 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');
|
Loading…
Add table
Add a link
Reference in a new issue