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
<!DOCTYPE html>
<script>
document.addEventListener("DOMContentLoaded", async () => {
const decoder = new VideoDecoder({
'output': (e) => {},
'error': (e) => {},
});
// media.test.null.decoder.creation-failure must set to true for this test!
decoder.configure({
codec: 'vp8',
codedWidth: 320,
codedHeight: 240,
visibleRect: {x: 0, y: 0, width: 320, height: 240},
displayWidth: 320,
displayHeight: 240,
});
})
</script>