summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/offscreen/layers/2d.layer.clearRect.partial-expected.html
blob: ac75105cecbe93e46b60596346795f1817fd9a68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>Canvas test: 2d.layer.clearRect.partial</title>
<h1>2d.layer.clearRect.partial</h1>
<p class="desc">clearRect inside a layer can clear a portion of the layer content.</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');

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

  ctx.fillStyle = 'red';
  ctx.fillRect(20, 20, 80, 10);
  ctx.fillRect(20, 60, 80, 10);
  ctx.fillRect(20, 20, 10, 50);
  ctx.fillRect(90, 20, 10, 50);
</script>