Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /webcodecs/imagedecoder-zero-length-crash.https.html - WPT Dashboard Interop Dashboard
<script>
document.addEventListener('DOMContentLoaded', () => {
const _ = new ImageDecoder({
type: "image/png",
data: new ReadableStream({
start(controller) {
controller.enqueue(new Uint8Array(0))
}
})
})
})
</script>