1
0
Fork 0
firefox/dom/canvas/test/crash/file_798802-1.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
542 B
HTML

<html>
<head>
<script>
onload = function() {
var canvas2d = document.createElement('canvas')
canvas2d.setAttribute('width', 0)
document.body.appendChild(canvas2d)
var ctx2d = canvas2d.getContext('2d')
ctx2d.fillStyle = 'black'
var gl = document.createElement('canvas').getContext('experimental-webgl')
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, canvas2d)
ctx2d.fillRect(0, 0, 1, 1)
}
</script>
</head>
<body>
</body>
</html>