Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<link rel="match" href="2d.layer.clearRect.partial-expected.html">
<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.beginLayer();
ctx.fillStyle = 'red';
ctx.fillRect(20, 20, 80, 50);
ctx.clearRect(30, 30, 60, 30);
ctx.endLayer();
</script>