mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
12 lines
276 B
HTML
12 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>
|