Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<html>
<head>
<script>
function start () {
SpecialPowers.forceGC();
canvas.toBlob(function (blob) {
blob.stream()
blob.arrayBuffer().then(() => {})
})
}
window.addEventListener('load', start)
</script>
</head>
</html>