blob: 89af55504f68759427c9a89fbfee248d3e2100f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html>
<head>
<script>
window.addEventListener('load', () => {
let a = new Blob([new Uint8Array(2147483647)])
let b = new File([a], '')
b.stream()
})
</script>
</head>
</html>
|