Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<meta charset="UTF-8">
<link rel="stylesheet" href="/html/canvas/resources/canvas-grid-reftest.css">
<title>Canvas test: 2d.text.measure.text-clusters-rendering-drawing-styles-change.tentative</title>
<h1>2d.text.measure.text-clusters-rendering-drawing-styles-change.tentative</h1>
<p class="desc">Test that fillTextCluster() renders using the drawing styles as they were when `ctx.measureText()` was called, regardless of any changes in the context since.</p>
<div class="grid-container" style="--grid-width: 2">
<span>
<div>letter_spacing</div>
<canvas class="grid-cell-content" id="canvas0" width="250" height="80">
<p class="fallback">FAIL (fallback content)</p>
</canvas>
<script type="module">
const canvas = document.getElementById("canvas0");
const ctx = canvas.getContext('2d');
ctx.font = '20px serif';
const text = 'Test ♦️ find';
ctx.letterSpacing = '2px';
ctx.fillText(text, 10, 25);
ctx.letterSpacing = '6px';
ctx.fillText(text, 10, 50);
</script>
</span>
<span>
<div>word_spacing</div>
<canvas class="grid-cell-content" id="canvas1" width="250" height="80">
<p class="fallback">FAIL (fallback content)</p>
</canvas>
<script type="module">
const canvas = document.getElementById("canvas1");
const ctx = canvas.getContext('2d');
ctx.font = '20px serif';
const text = 'Test ♦️ find';
ctx.wordSpacing = '2px';
ctx.fillText(text, 10, 25);
ctx.wordSpacing = '10px';
ctx.fillText(text, 10, 50);
</script>
</span>
<span>
<div>font_kerning</div>
<canvas class="grid-cell-content" id="canvas2" width="250" height="80">
<p class="fallback">FAIL (fallback content)</p>
</canvas>
<script type="module">
const canvas = document.getElementById("canvas2");
const ctx = canvas.getContext('2d');
ctx.font = '20px serif';
const text = 'Test ♦️ find';
ctx.fontKerning = 'none';
ctx.fillText(text, 10, 25);
ctx.fontKerning = 'normal';
ctx.fillText(text, 10, 50);
</script>
</span>
<span>
<div>font_variant_caps</div>
<canvas class="grid-cell-content" id="canvas3" width="250" height="80">
<p class="fallback">FAIL (fallback content)</p>
</canvas>
<script type="module">
const canvas = document.getElementById("canvas3");
const ctx = canvas.getContext('2d');
ctx.font = '20px serif';
const text = 'Test ♦️ find';
ctx.fontVariantCaps = 'small-caps';
ctx.fillText(text, 10, 25);
ctx.fontVariantCaps = 'all-small-caps';
ctx.fillText(text, 10, 50);
</script>
</span>
</div>