Files
Kmake/test/fixtures/wpt/streams/piping/crashtests/cross-piping2.https.html

15 lines
396 B
HTML
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
<!DOCTYPE html>
<script type="module">
let a = self.open()
let d = await a.navigator.storage.getDirectory()
let h = await d.getFileHandle("c5c9960b-a637-4232-be3d-3ccc5704852f", {"create": true})
let r = new ReadableStream({
start(c) {
c.enqueue(h)
c.close();
}
});
let w = await h.createWritable({ })
r.pipeThrough({"readable": r, "writable": w}, {})
</script>