tenfourfox/dom/canvas/crashtests/727547.html

8 lines
208 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!doctype html>
<canvas></canvas>
<script>
var canvas = document.body.firstChild,
gl = canvas.getContext("experimental-webgl");
gl.texImage2D(0, 0, 0, 0, 0, { width: 10, height: 10, data: 7 });
</script>