All pastes #887193 Raw Edit

Anonymous

public text v1 · immutable
#887193 ·published 2008-02-01 04:44 UTC
rendered paste body
<canvas id="c" width="1" height="1">
</canvas>

<script>
var c = document.getElementById("c");
var ctx = c.getContext("2d");
ctx.fillStyle = '#000080';
ctx.fillRect(0, 0, 1, 1);
alert(c.toDataURL());
</script>