chromium/third_party/blink/web_tests/external/wpt/html/canvas/offscreen/text/2d.text.fontVariantCaps.after.reset.font.html

<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<link rel="match" href="2d.text.fontVariantCaps.after.reset.font-expected.html">
<title>Canvas test: 2d.text.fontVariantCaps.after.reset.font</title>
<h1>2d.text.fontVariantCaps.after.reset.font</h1>
<p class="desc">Testing if the fontVariantCaps is reset after font change</p>
<canvas id="canvas" width="300" height="300">
  <p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
  const canvas = new OffscreenCanvas(300, 300);
  const ctx = canvas.getContext('2d');

  ctx.font = "32px serif";
  ctx.fontVariantCaps = "small-caps";

  ctx.font = "31px serif";
  ctx.fillText("Hello World", 20, 40);
  ctx.fontVariantCaps = "small-caps";
  ctx.fillText("Hello World", 20, 80);

  const outputCanvas = document.getElementById("canvas");
  outputCanvas.getContext('2d').drawImage(canvas, 0, 0);
</script>