summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/text/2d.text.fontVariantCaps5.html
blob: d80de4ea31873274d14761cb9b1f171a4eb9b208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<link rel="match" href="2d.text.fontVariantCaps5-expected.html">
<title>Canvas test: 2d.text.fontVariantCaps5</title>
<h1>2d.text.fontVariantCaps5</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 = document.getElementById("canvas");
  const ctx = canvas.getContext('2d');

  ctx.font = "small-caps 32px serif";
  // fontVariantCaps 'normal' does not override the setting from the font attribute.
  // (spec unclear, cf. https://github.com/whatwg/html/issues/8103)
  ctx.fontVariantCaps = "normal";
  ctx.fillText("Hello World", 20, 100);
</script>