summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/manual/context-attributes/fillRect_alpha_false.html
blob: 143756eb0c7aa45e7002cc10ad90caa32876f1f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<meta charset="utf-8">
<title>CanvasRenderingContext 2D with alpha=flase, fillRect with semi-transparent color.</title>
<link rel="author" title="Justin Novosad" href="mailto:junov@chromium.org">
<link rel="help" href="https://html.spec.whatwg.org/#concept-canvas-alpha">
<link rel="match" href="fillRect_alpha_false-ref.html">
<meta name="assert" content="Canvas pixels remain opaque black when drawing semi-transparent rectangle.">
<p>Test passes if a 100x100 black square is displayed below.</p>
<canvas id="c" width=100 height=100></canvas>
<script>
const ctx = document.getElementById("c").getContext("2d", {alpha: false});
ctx.fillColor = "rgba(0, 0, 0, 0.5)";
ctx.fillRect(25, 25, 50, 50);
</script>