mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|