chromium/third_party/blink/web_tests/external/wpt/html/canvas/offscreen/text/2d.text.fontVariantCaps1.html

<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<link rel="match" href="2d.text.fontVariantCaps1-expected.html">
<title>Canvas test: 2d.text.fontVariantCaps1</title>
<h1>2d.text.fontVariantCaps1</h1>
<p class="desc">Testing small caps setting in fontVariant</p>
<canvas id="canvas" width="100" height="50">
  <p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
  const canvas = new OffscreenCanvas(100, 50);
  const ctx = canvas.getContext('2d');

  ctx.font = "32px serif";
  ctx.fontVariantCaps = "small-caps";
  // This should render the same as font = "small-caps 32px serif".
  ctx.fillText("Hello World", 20, 100);

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