Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/canvas/element/filters/2d.filter.drop-shadow-globalAlpha.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<meta charset="UTF-8">
<link rel="match" href="2d.filter.drop-shadow-globalAlpha-expected.html">
<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.filter = 'drop-shadow(10px 5px 0px rgb(255, 165, 0))';
ctx.globalAlpha = 0.5
ctx.fillStyle = 'rgb(128, 0, 128)';
ctx.fillRect(10, 10, 60, 30);
</script>