I am encountering an issue with font-face and Cyrillic characters. The fonts display properly in any browser on OS X, but fail to render on a Windows 7 machine (chrome, ie etc).
Even after putting the fonts through Font Squirrel and testing the demo files, the issue persists.
The font-face css:
@font-face {
font-family: 'open_sansregular';
src: url('opensans-regular-webfont.eot');
src: url('opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('opensans-regular-webfont.woff') format('woff'),
url('opensans-regular-webfont.ttf') format('truetype'),
url('opensans-regular-webfont.svg#open_sansregular') format('svg');
font-weight: normal;
font-style: normal;
}
Here is a simple demonstration of my problem.
Edit: I have updated the link so that the fonts fallback to times new roman and included some English characters to illustrate that the Cyrillic characters are falling back as intended.