I've run into a bug with my app that I traced down to inconsistent text rendering between Chrome and Firefox 4.
Chrome tells me that a certain string of text is 215px wide whereas Firefox 4 tells me its 218px wide:

A bit of searching indicates that the issue is with Firefox 4, not Chrome.
The following code renders the text on the canvas element as well as via HTML and outputs the width:
<html>
<head>
<title>Firefox 4 Text Rendering Bug</title>
<script type="text/javascript">
function draw(){
var canvas = document.getElementById('tutorial');
if (canvas.getContext){
var ctx = canvas.getContext('2d');
ctx.font = "bold 16pt Helvetica"
ctx.fillText("MORE INFORMATION", 0, 16)
alert(ctx.measureText("MORE INFORMATION").width);
}
}
</script>
<style type="text/css">
canvas { border: 1px solid black; }
h2 {font-size: 16pt; font-family: Helvetica; font-weight: bold }
</style>
</head>
<body onload="draw();">
<canvas id="tutorial" width="220" height="20"></canvas>
<h2>MORE INFORMATION</h2>
</body>
</html>
Is there a way to render text consistently between the browsers?