summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/reset/2d.reset.render.drop_shadow.html
blob: 264355c8b315b8a69b9d5007a2d450fa5a91e075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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>