11 lines
182 B
HTML
11 lines
182 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function start () {
|
|
new OffscreenCanvas(1, 127).toBlob()
|
|
}
|
|
|
|
window.addEventListener('load', start)
|
|
</script>
|
|
</head>
|
|
</html>
|