summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/726951-shadow-clips.html
blob: b14e0c307d860f9323a0b300efcb9f192aadc797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<head>
  
<body>
  <canvas id="mycanvas" width="200" height="600"></canvas>

  <script type="text/javascript">
  var cx = document.getElementById('mycanvas').getContext('2d');
  cx.beginPath();
  cx.rect(10, 10, 50, 50);
  cx.clip();
  cx.beginPath();
  cx.rect(0, 0, 50, 50);
  cx.shadowColor = "black";
  cx.shadowOffsetX = 10;
  cx.shadowOffsetY = 10;
  cx.fill();
  </script>