gecko/layout/reftests/canvas/transformed-gradient-ref.html
Jeff Muizelaar 617ed39964 Bug 728028. CG: Avoid double transforming filled gradients. r=mwoodrow
When we fixed transformed clips it caused us to double transform gradients. We
fix this by avoiding ::PushClip when drawing gradients. This has the advantage
of saving a save and restore pair and it makes Fill() more closely match
Stroke()
2012-02-25 00:35:39 -05:00

18 lines
436 B
HTML

<html>
<body>
<canvas width="500" height="500"></canvas>
<script>
var canvas = document.getElementsByTagName('canvas')[0];
var ctx = canvas.getContext('2d');
var lineargradient = ctx.createLinearGradient(000,000,500,500);
lineargradient.addColorStop(0,'red');
lineargradient.addColorStop(1,'black');
ctx.fillStyle = lineargradient;
ctx.beginPath();
ctx.rect(00, 00, 250, 250);
ctx.fill();
</script>
</body>
</html>