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