summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/reftest/1758968-1.html
blob: 0a786865946d6343c6217151b3fcc3cacf2adcf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<canvas id="canvas" width="100" height="100"></canvas>
<script>
  var can = document.getElementById('canvas');
  var ctx = can.getContext('2d');

  ctx.shadowOffsetX = 24;
  ctx.shadowOffsetY = 24;
  ctx.shadowColor = 'blue';
  ctx.shadowBlur = 20;

  ctx.rect(0,0,100,50);
  ctx.clip();

  ctx.fillStyle = 'black';
  ctx.fillRect(0,0,40,40);
</script>