blob: 673c8711f04a9ff513007948795575428402f588 [file] [log] [blame]
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>Canvas test: 2d.layer.global-states.composite</title>
<h1>2d.layer.global-states.composite</h1>
<p class="desc">Checks that layers correctly use global render states.</p>
<canvas id="canvas" width="90" height="90">
<p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext('2d');
ctx.fillStyle = 'rgba(128, 128, 128, 1)';
ctx.fillRect(20, 15, 50, 50);
ctx.globalCompositeOperation = 'source-in';
const canvas2 = document.createElement("canvas");
const ctx2 = canvas2.getContext("2d");
ctx2.globalCompositeOperation = 'screen';
ctx2.fillStyle = 'rgba(255, 0, 0, 1)';
ctx2.fillRect(10, 25, 40, 50);
ctx2.fillStyle = 'rgba(0, 255, 0, 1)';
ctx2.fillRect(30, 5, 50, 40);
ctx.drawImage(canvas2, 0, 0);
</script>