Open GoogleCodeExporter opened 8 years ago
[deleted comment]
Did you find a solution?
I am having a similar issue with my icon fonts. Instead of rendering the icon
it renders a square.
I am using IE9.js Version 2.1 (beta4) in Win XP - IE8
Any suggestion?
Cheers
Original comment by laura.s....@gmail.com
on 12 Feb 2014 at 4:08
It seems that the JS is removing the leading "\" that signifies a unicode
character in the CSS. If you add that back into the content: "" property in
the CSS, it works. The JS needs to make sure it's not removing leading or
trailing slashes from places where they're actually required.
Original comment by dpkon...@gmail.com
on 3 Jun 2014 at 8:01
i solved this for me with a quick hack by adding a line of code to my IE9.js:
load: function() {
this.cssText = "";
this.getText();
this.parse();
if (inheritedProperties.length) {
this.cssText = parseInherited(this.cssText);
}
this.cssText = decode(this.cssText);
// preserve fontawesome-classes (werkzeugh@gmail.com 2014-06-04)
this.cssText=this.cssText.replace(/content: 'f([a-f0-9]+)';/g,'content: "\\f$1";');
fileCache = {};
},
Original comment by werkze...@gmail.com
on 4 Jun 2014 at 8:23
Original issue reported on code.google.com by
samuel.s...@gmail.com
on 25 Oct 2013 at 12:51