summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/offscreen/layers/2d.layer.nested-filters-expected.html
blob: 8b53e2dc7619126ffa3e5aa8cb3a24497c0b5383 (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
27
28
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>Canvas test: 2d.layer.nested-filters</title>
<h1>2d.layer.nested-filters</h1>
<p class="desc">Checks that nested layers work properly when both apply filters.</p>
<canvas id="canvas" width="400" height="200">
  <p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
  const canvas = document.getElementById("canvas");
  const ctx = canvas.getContext('2d');

  ctx.fillStyle = 'yellow';
  ctx.fillRect(20, 20, 100, 100);
  ctx.fillRect(30, 30, 100, 100);
  ctx.fillStyle = 'blue';
  ctx.fillRect(40, 40, 100, 100);
  ctx.fillStyle = 'red';
  ctx.fillRect(50, 50, 100, 100);

  ctx.fillStyle = 'blue';
  ctx.fillRect(280, 80, 100, 100);
  ctx.fillRect(270, 70, 100, 100);
  ctx.fillStyle = 'yellow';
  ctx.fillRect(260, 60, 100, 100);
  ctx.fillStyle = 'red';
  ctx.fillRect(250, 50, 100, 100);
</script>