Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<meta charset="UTF-8">
<title>Canvas test: 2d.filter.drop-shadow-globalAlpha</title>
<h1>2d.filter.drop-shadow-globalAlpha</h1>
<p class="desc">Tests the context drop-shadow filter with a globalAlpha</p>
<canvas id="canvas" width="100" height="50">
<p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext('2d');
ctx.fillStyle = 'rgba(255, 165, 0, 0.5)';
ctx.fillRect(20, 15, 60, 30);
ctx.fillStyle = 'rgba(128, 0, 128, 0.5)'
ctx.fillRect(10, 10, 60, 30);
</script>