So here is the thing, we have a saas webapplication which uses a special font to display icons. So instead of using numerous png's we use a <span> with a class icon.
The CSS file starts with the @font-face tag, which was mainly generated by fontsquirrel and looks as follows:
@font-face {
font-family: 'iconsregular';
src: url('../../Content/fonts/icons-webfont.eot');
src: url('../../Content/fonts/icons-webfont.eot?#iefix') format('embedded-opentype'),
url('../../Content/fonts/icons-webfont.woff') format('woff'),
url('../../Content/fonts/icons-webfont.ttf') format('truetype'),
url('../../Content/fonts/icons-webfont.svg#iconsregular') format('svg');
font-weight: normal;
font-style: normal;
}
This displays perfectly in all our supported browsers (IE7, 8, 9, FF, Safari & Chrome). But when the website is accessed through a remote desktop client. the webfont is not used. But the CSS file and .eot file are downloaded.
Reproducing the error
So I started testing and trying to reproduce the issue. When I took these steps, the error occurred:
- Connect to Remote Desktop A (Server 2008)
- Open IE9
- Browse to the website
- Fonts not shown.
Then I connected to a different server:
- Connect to Remote Desktop B (Server 2008)
- Open Firefox
- Browse to the website
- Fonts are shown!
- Open website in IE9
- Fonts are shown also, some goes for Chrome
After this surprise i reconnected to RD A again.
- Open IE9
- Fonts are shown...
It seems that the RDP client caches its fonts somewhere and at some time.
When and how does this happen? And are there ways to force the RDP client in downloading and displaying @font-face webfonts?