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 am running into an odd issue. Using the webfont link through google's webfonts api works just fine and loads the font, however... The app i'm creating is local only, so having any kind of overhead connecting to the internet is noticeable when rendering the fonts for the first time, plus no font would be loaded if there is no internet connection.

@font-face {
font-family: Pt Sans;
font-style: normal;
font-weight: 400;
src: url(http://themes.googleusercontent.com/static/fonts/ptsans/v4/jduSEW07_j4sIG_ERxiq4Q.woff);
}

The above is the working code.

@font-face {
font-family: Pt Sans;
font-style: normal;
font-weight: 400;
src: url(fonts/ptsans.woff);
}

This works when running directly from the browser locally, however i'm using a framework which embeds the chrome webview into my C# application, called CefSharp. The difference is, i'm simulating a link to a site, rather then loading the pages directly. It would be as if I created my own http:// link to the font, like the webfont.

If I open up Chromes dev tools > resources tab > fonts and click the locally loaded font, it shows a default font, however if I click the font loaded through google's api, it renders the correct font.

What is the google api sending to the browser that i'm not? I've tried numerous mimeTypes to no avail.

share|improve this question

1 Answer

Do you know font-face cross-domain policy? You could try to send Access-Control-Allow-Origin "*" in fonts' http headers.

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.