mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-16 01:31:37 +00:00
8 lines
208 B
HTML
8 lines
208 B
HTML
<!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>
|