Bug 690598. Change the test to paint the whole canvas so that we don't get upscaling antialiasing differences. r=roc

This commit is contained in:
Boris Zbarsky 2011-11-18 17:07:54 +13:00
parent 3cd457bc4a
commit e110497f42
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ canvas {
<script>
var ctx = document.getElementById("c").getContext("2d");
ctx.fillStyle = "black";
ctx.fillRect(2, 2, 6, 6);
ctx.fillRect(0, 0, 10, 10);
</script>
</body>
</html>

View File

@ -31,7 +31,7 @@ canvas {
<script>
var ctx = document.getElementById("c").getContext("2d");
ctx.fillStyle = "black";
ctx.fillRect(2, 2, 6, 6);
ctx.fillRect(0, 0, 10, 10);
</script>
</body>
</html>