summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/layers/2d.layer.global-filter-expected.html
blob: 88057fc354a4e593191a4b3d5c94cdfa7d466126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>Canvas test: 2d.layer.global-filter</title>
<h1>2d.layer.global-filter</h1>
<p class="desc">Tests that layers ignore the global context filter.</p>
<canvas id="canvas" width="150" height="100">
  <p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
  const canvas = document.getElementById("canvas");
  const ctx = canvas.getContext('2d');

  ctx.fillRect(60, 10, 30, 30);
  ctx.filter = 'blur(5px)'
  ctx.fillRect(10, 10, 30, 30);
  ctx.fillRect(110, 10, 30, 30);
</script>