blob: 4b3b28baf9dcb1dea96611bfdbfbce0a0aba7c3c [file] [log] [blame]
<!DOCTYPE html>
<title>Canvas test: 2d.text.fontStretch</title>
<script src="/html/canvas/resources/canvas-tests.js"></script>
</style>
<canvas id="c" class="output" width="500" height="500"><p class="fallback">FAIL (fallback content)</p></canvas>
<script>
var canvas = document.getElementById("c");
var ctx = canvas.getContext('2d');
// P shows as Pass for fontStretch = expanded and shows as fail for
// fontStretch = fail.
function draw() {
ctx.clearRect(0, 0, 500, 500);
ctx.font = '25px test';
ctx.fillText("P", 10, 40);
}
var f = new FontFace('test', 'url(/fonts/pass.woff)');
document.fonts.add(f);
// In canvas, font doesn't load until it's used. So try to use the newly added
// font test here.
draw();
document.fonts.ready.then(() => {
draw();
});
</script>