Here is the code:

var surface = document.getElementById("myCanvas");
    if (surface.getContext) {
      var context = surface.getContext('2d');

      context.shadowOffsetX = 2;
      context.shadowOffsetY = 2;
      context.shadowBlur = 5;
      context.shadowColor = "rgba(0, 0, 0, 0.5)";

      context.textBaseline = "top";
      context.font = "125px helvetica";
      context.textAlign = "center";

      var gradient = context.createLinearGradient(0, 0, 0, 150);
      gradient.addColorStop(0, "rgb(22,28,106)");
      gradient.addColorStop(1, "rgb(19,25,98)");

      context.fillStyle = gradient;
      context.fillText("Some Title", 450, 10);
}

the shadow just looks like a 1px outline... any ideas?

Live demo: http://jsfiddle.net/simevidas/MDgR3/

link|improve this question

1  
Looks good: jsfiddle.net/simevidas/MDgR3 – Šime Vidas Apr 22 '11 at 22:13
@Šime Vidas are you seeing a shadow on the text in that jsfiddle? I'm not... – thatmiddleway Apr 22 '11 at 22:19
@jtm My insinuation was that it works in my browser, but not in yours :) I'm using Chrome 10... – Šime Vidas Apr 22 '11 at 22:22
@Šime Vidas im running chrome 10.0.648.205, and I don't see a text-shadow... – thatmiddleway Apr 22 '11 at 22:24
1  
@jtm I see the shadow in IE9, O11, FF4 and Ch10, but not in Safari 5. – Šime Vidas Apr 22 '11 at 22:41
show 10 more comments
feedback

1 Answer

up vote 4 down vote accepted

Looks like safari is broken. If you remove the gradient code then safari correctly adds the text shadow:

http://jsfiddle.net/hv5zR/1/

If you draw the shadow and then draw the gradient over the top it works in safari.... this is a horrible hack but it works:

http://jsfiddle.net/thebeebs/nUbZX/

link|improve this answer
1  
Nice! I submitted this as a bug to the webkit team. This should not be the only way to get this to work. – thatmiddleway Apr 28 '11 at 14:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.