mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-16 17:31:17 +00:00
9 lines
215 B
HTML
9 lines
215 B
HTML
<script type="text/javascript">
|
|
function run() {
|
|
var cx = canvas.getContext("2d");
|
|
canvas.toDataURL("image/png");
|
|
}
|
|
</script>
|
|
<body onload="run()">
|
|
<canvas width="1" height="65536" id="canvas"></canvas>
|