fillText and strokeText example
function boot() {
draw(document.getElementById('canvas').getContext('2d'));
draw(document.getElementById('vmlcanvas').getContext('2d'));
}
function draw(ctx) {
var fillText = "fill. 日本語";
var strokeText = "stroke. 日本語";
ctx.textBaseline = "top";
ctx.font = "32pt Arial";
ctx.fillStyle = "orange"; // shadow color
ctx.fillText(fillText, 22, 22);
ctx.fillStyle = "red";
ctx.fillText(fillText, 20, 20);
ctx.strokeStyle = "blue";
ctx.strokeText(strokeText, 20, 80);
}