Google 如何通过其新的 Webfonts 服务解决 Firefox 中的跨站点字体使用安全问题?
Google 提供了网络字体 - http://code.google.com/webfonts
它们可以在 Firefox 中使用,但 FF 具有阻止跨站点字体使用的安全策略 - http:// /hacks.mozilla.org/2009/06/beautiful-fonts-with-font-face/(搜索跨站点字体使用)。
任何人都可以猜测他们是如何做到这一点的吗?他们使用“访问控制标头”吗?有没有办法测试一下?
添加访问控制标头是否存在任何安全问题?
提前致谢。
Google offers webfonts - http://code.google.com/webfonts
They work in Firefox, but FF has a security policy to stop cross-site font usage - http://hacks.mozilla.org/2009/06/beautiful-fonts-with-font-face/ (search for Cross-Site Font Usage).
Can anyone hazard a guess how they do this? Do they use 'access control headers'? Is there a way to test for it?
And are there any security concerns with adding access control headers?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,他们使用访问控制标头。您可以使用实时 HTTP 标头来验证这一点:
Access-Control-Allow-Origin: *
。Yes, they use access control headers. You can use Live HTTP Headers to verify this:
Access-Control-Allow-Origin: *
is in the response headers.