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

<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<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 = document.getElementById("canvas");
  const ctx = canvas.getContext('2d');

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