mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +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>
|