blob: d49284f7f524a428721ae71ed3aa25425263f3a5 [file] [log] [blame]
<!DOCTYPE html>
<title>Canvas test: 2d.text.draw.kern.consistent</title>
<script src="../tests.js"></script>
<link rel="stylesheet" href="../tests.css">
<link rel="prev" href="2d.text.draw.stroke.unaffected.html" title="2d.text.draw.stroke.unaffected">
<link rel="next" href="2d.text.draw.fill.maxWidth.fontface.html" title="2d.text.draw.fill.maxWidth.fontface">
<body class="show_output">
<p>
<a href="2d.text.draw.stroke.unaffected.html" accesskey="p" title="[p] 2d.text.draw.stroke.unaffected">&lt;</a>
<a href="index.html">[index]</a>
<a href="2d.text.draw.fill.maxWidth.fontface.html" accesskey="n" title="[n] 2d.text.draw.fill.maxWidth.fontface">&gt;</a>
<h1><a href="index.2d.html">2d</a>.<a href="index.2d.text.html">text</a>.<a href="index.2d.text.draw.html">draw</a>.<a href="index.2d.text.draw.kern.html">kern</a>.consistent</h1>
<p class="desc">Stroked and filled text should have exactly the same kerning so it overlaps</p>
<div class="refs">References:
<ul>
<li><a href="spec.html#testrefs.2d.text.draw">2d.text.draw</a>
</ul>
</div>
<p class="output">Actual output:</p>
<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
<p class="output expectedtext">Expected output:<p><img src="green-100x50.png" class="output expected" id="expected" alt="">
<ul id="d"></ul>
<script>
_addTest(function(canvas, ctx) {
ctx.fillStyle = '#0f0';
ctx.fillRect(0, 0, 100, 50);
ctx.fillStyle = '#f00';
ctx.strokeStyle = '#0f0';
ctx.lineWidth = 3;
ctx.font = '20px Arial, sans-serif';
ctx.fillText('VAVAVAVAVAVAVA', -50, 25);
ctx.fillText('ToToToToToToTo', -50, 45);
ctx.strokeText('VAVAVAVAVAVAVA', -50, 25);
ctx.strokeText('ToToToToToToTo', -50, 45);
});
</script>