summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/offscreen/layers/2d.layer.clip-inside-expected.html
blob: 281fc1d9137af1eb605f272b429e3eb4a31b2501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>Canvas test: 2d.layer.clip-inside</title>
<h1>2d.layer.clip-inside</h1>
<p class="desc">Check clipping set inside the layer</p>
<canvas id="canvas" width="100" height="100">
  <p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
  const canvas = document.getElementById("canvas");
  const ctx = canvas.getContext('2d');

  const canvas2 = new OffscreenCanvas(200, 200);
  const ctx2 = canvas2.getContext('2d');

  ctx2.beginPath();
  ctx2.rect(15, 15, 70, 70);
  ctx2.clip();

  ctx2.fillStyle = 'blue';
  ctx2.fillRect(10, 10, 80, 80);

  ctx.beginLayer({filter: {name: "gaussianBlur", stdDeviation: 12}});
  ctx.drawImage(canvas2, 0, 0);
  ctx.endLayer();
</script>