Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: (os == 'android')
- Manifest: dom/media/webcodecs/crashtests/crashtests.list
<script>
document.addEventListener("DOMContentLoaded", () => {
// Test ByteCount overflow - NO try/catch so crash propagates
const frame = new VideoFrame(new Uint8Array(64), {
format: "RGBA",
codedWidth: 2147483647,
codedHeight: 2147483647,
visibleRect: { x: 0, y: 0, width: 4, height: 4 },
timestamp: 0
});
frame.close();
});
</script>