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.reset.render.drop_shadow-expected.html">
<title>Canvas test: 2d.reset.render.drop_shadow</title>
<h1>2d.reset.render.drop_shadow</h1>
<p class="desc">check that drop shadows are correctly rendered after reset</p>
<canvas id="canvas" width="500" height="500">
<p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext('2d');
ctx.shadowOffsetX = 10;
ctx.shadowOffsetY = 10;
ctx.shadowColor = "red";
ctx.shadowBlur = 10;
ctx.reset();
ctx.fillRect(100, 100, 100, 100);
</script>