blob: 2e19696a0be5854393e4b08ab57b0af64e731a9a [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
@font-face {
font-family: "WebFont";
src: url("resources/Ahem-sbix.ttf") format("truetype");
}
</style>
</head>
<body>
<canvas id="canvas" width="700" height="500" style="width: 700px; height: 500px;"></canvas>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
let font = "100px 'WebFont'";
document.fonts.load(font).then(function() {
let canvas = document.getElementById("canvas");
let context = canvas.getContext("2d");
context.setLineDash([2, 2]);
context.font = font;
context.strokeText("AB", 100, 100);
if (window.testRunner)
testRunner.notifyDone();
});
</script>
</body>
</html>