chromium/third_party/blink/web_tests/external/wpt/html/canvas/offscreen/layers/2d.layer.clearRect.partial-expected.html

<!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>