chromium/third_party/blink/web_tests/external/wpt/html/canvas/offscreen/reset/2d.reset.after-rasterization-expected.html

<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>Canvas test: 2d.reset.after-rasterization</title>
<h1>2d.reset.after-rasterization</h1>
<p class="desc">Reset after rasterizing a frame discards frame content.</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(0, 255, 0, 0.5)';
  ctx.fillRect(0, 0, 100, 25);
</script>