IE8 和 CSS @font-face 使浏览器崩溃

IE8 and CSS @font-face crashes the browser

我看到还有另一个问题 here 针对同一问题,但 none 的建议对我有用。我正在使用以下语法加载一些文本字体和自定义图标字体的权重:

@font-face {
  font-family: "proxima_nova_rgregular";
  src: url("../vendor/fonts/proximanova-regular-webfont.eot");
  src: url("../vendor/fonts/proximanova-regular-webfont.eot?#iefix") format("embedded-opentype"), 
    url("../vendor/fonts/proximanova-regular-webfont.woff") format("woff"), 
    url("../vendor/fonts/proximanova-regular-webfont.ttf") format("truetype"), 
    url("../vendor/fonts/proximanova-regular-webfont.svg#proximanova-regular-webfont") format("svg");
  font-weight: normal;
  font-style: normal;
}

大约 80% 的时间这会使浏览器完全崩溃。我也在 bootstrap 中使用它,但找不到任何表明不兼容的东西。我试过使用 javascript,在结束 body 标签之前加载,以及大约一百种其他方式。

事件查看器在 mshtml.dll

上显示崩溃
Faulting application name: iexplore.exe, version: 8.0.7601.18715, time stamp: 0x54b3297e
Faulting module name: mshtml.dll, version: 8.0.7601.18715, time stamp: 0x54b334da
Exception code: 0xc0000005
Fault offset: 0x000d87e0
Faulting process id: 0x25c
Faulting application start time: 0x01d04d3634afbed0
Faulting application path: C:\Program Files\Internet Explorer\iexplore.exe
Faulting module path: C:\Windows\System32\mshtml.dll
Report Id: ac43aaa2-bb80-11e4-9a74-000c29491be4

我在这里完全被难住了,我尝试过的一切都无济于事 - 任何正确方向的观点都会有所帮助。

对于遇到此问题的任何其他人,在我的情况下,它归结为结束 </body> 标记之前的一些错误标记。搜索母版页并逐块删除最终解决了它。