When canvas size is large, lines drawn do not appear at all.
Example: http://jsfiddle.net/yu5gxgpt/3/
<canvas id="Grid" width="20000" height="16000">
</canvas>
var context = canvas.getContext("2d");
context.beginPath();
context.moveTo(10, 20);
context.lineTo(100, 20);
context.strokeStyle = "#FF0000";
context.lineWidth = 1;
context.stroke();
Lines do not show up for Grid1. If I reduce the size of Grid1, then the lines will be drawn. Why is that?
Browser tested: Chrome on OSX