summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/transformed-gradient-ref.html
blob: 20e91c556634454a9a9d0ba099c97f16b4b7304c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>