Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a custom font set up like so in the css:

@font-face {  
  font-family: 'FinkRoman';  
  src: url( /fonts/FinkRoman.eot ); /* IE */  
  src: local("FinkRoman"), url( /fonts/FinkRoman.ttf ) format("truetype"); 
  font-weight: normal;
  font-style: normal;
}  

I am testing the site in several browsers and it displays fine in all but one:

Macbook Retina Firefox - OK

Macbook Retina Safari - OK

Macbook Retina Chrome - OK

Macbook Pro Safari - OK

Macbook Pro Firefox - defaults to Times

I checked the Firefox settings in the Macbook Pro and in the advanced font settings, it is checked to allow pages to choose their own fonts. But for some reason it just doesn't work here. I have no idea why. This font was chosen and purchased by my client. Any ideas why this wouldn't work. What is even weirder is that my Macbook Retina and Pro both have the same version of Firefox (the latest). The Pro is using an older OS (Snow Leopard) but that shouldn't matter. Ever seen this?

share|improve this question
Any errors in the error console? – Boris Zbarsky Nov 19 '12 at 4:44
There it is. It was rejected by Firefox's sanitizer on my Pro, but not in any of the other browsers on this laptop or on my other laptop. Weird. If you post an answer I will accept it. – Joel Joel Binks Nov 19 '12 at 7:44
done, but now we've just replaced one mystery with another... I didn't think the font sanitizer depended on the OS in any way. You said you're using Firefox 16.0.2 on both machines? – Boris Zbarsky Nov 19 '12 at 13:26

1 Answer

up vote 1 down vote accepted

In cases like this it's always worth checking the error console: failures to do cross-site loads or sanitize the font will be logged there.

What I don't know offhand is why either one of those would behave differently on your Macbook Retina and Macbook Pro, in the same Firefox version...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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