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-font-change.tentative</title>
<h1>2d.text.measure.text-clusters-rendering-font-change.tentative</h1>
<p class="desc">Test that fillTextCluster() renders in the font used originally when the text was measured, even if the font set on the context has changed since.</p>
<canvas id="canvas" width="500" height="200">
<p class="fallback">FAIL (fallback content)</p>
</canvas>
<script>
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext('2d');
ctx.font = '50px sans-serif';
const text = 'Hello ♦️ World!';
let tm = ctx.measureText(text);
const clusters = tm.getTextClusters();
const x = 100;
const y = 100;
ctx.fillText(text, x, y);
</script>