Por mas que defino las dimensiones 600x400 el canvas no supera 300x150 Me podrían ayudar a ver el error
<canvas> width = "600" height = "400" </canvas>
<script>
var pantalla = document.querySelector("canvas");
var pincel = pantalla.getContext("2d");
pincel.fillStyle = "lightgrey"
pincel.fillRect(0,0,600,400);
pincel.fillStyle = "green"
pincel.fillRect(0,0,200,400);
pincel.fillStyle = "red"
pincel.fillRect(400,0,200,400);
</script>