ladybird/Tests/LibWeb/Text/input/Streams/ReadableStream-autoAllocateChunkSize-constructor.html
2025-03-20 11:50:49 +01:00

11 lines
276 B
HTML

<!DOCTYPE html>
<script src="../include.js"></script>
<script>
test(() => {
let stream = new ReadableStream({
type: "bytes",
autoAllocateChunkSize: 64
});
println(`PASS. Made: ${stream.constructor.name}`);
});
</script>