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">
<title>Canvas test: 2d.text.measure.text-clusters-rendering-drawing-styles-change.tentative</title>
<h1 style="font-size: 20px;">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 style="display: grid; grid-gap: 4px;
grid-template-columns: repeat(2, max-content);
font-size: 13px; text-align: center;">
<span>
<div>letter_spacing</div>
<canvas id="canvas0" width="250" height="80" style="outline: 1px solid">
<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 id="canvas1" width="250" height="80" style="outline: 1px solid">
<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 id="canvas2" width="250" height="80" style="outline: 1px solid">
<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 id="canvas3" width="250" height="80" style="outline: 1px solid">
<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>