summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/layers/2d.layer.clip-outside-expected.html
blob: 1b18c2e8a701aa21d74d4cd8652bfff88d0639cc (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-outside</title>
<h1>2d.layer.clip-outside</h1>
<p class="desc">Check clipping set outside 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.beginLayer({filter: {name: "gaussianBlur", stdDeviation: 12}});
  ctx2.fillStyle = 'blue';
  ctx2.fillRect(10, 10, 80, 80);
  ctx2.endLayer();

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

  ctx.drawImage(canvas2, 0, 0);
</script>