When processing CSS with font-face's some relative urls are not resolved.
The problem seems to be in following.
* Sample font-face definition (taken from Bootstrap):
@font-face {
font-family: 'Glyphicons Halflings';
src: url('fonts/glyphicons-halflings-regular.eot');
src: url('fonts/glyphicons-halflings-regular.eot?#iefix' ) format('embedded-opentype'),
/* lines removed for clarity */
}
* CssRelativePathResolver locates url strings with CssUrlRuleRegex expression which doesn't match
url('fonts/glyphicons-halflings-regular.eot?#iefix' )
because of spaces between last single quote and closing bracket characters.
* url is not transformed to absolute.
Comments: Hello, Iddqd! In [Bundle Transformer 1.8.18](http://bundletransformer.codeplex.com/releases/view/117609) fixed this error.
The problem seems to be in following.
* Sample font-face definition (taken from Bootstrap):
@font-face {
font-family: 'Glyphicons Halflings';
src: url('fonts/glyphicons-halflings-regular.eot');
src: url('fonts/glyphicons-halflings-regular.eot?#iefix' ) format('embedded-opentype'),
/* lines removed for clarity */
}
* CssRelativePathResolver locates url strings with CssUrlRuleRegex expression which doesn't match
url('fonts/glyphicons-halflings-regular.eot?#iefix' )
because of spaces between last single quote and closing bracket characters.
* url is not transformed to absolute.
Comments: Hello, Iddqd! In [Bundle Transformer 1.8.18](http://bundletransformer.codeplex.com/releases/view/117609) fixed this error.