I’m trying to use an IE conditional comment to declare a CSS resource:
<h:outputStylesheet name="common.css" library="css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="#{resource['css:ie.css']}" />
<![endif]-->
However, that doesn’t seem to work. I’m seeing this in my generated HTML output:
<link type="text/css" rel="stylesheet" href="/context/faces/javax.faces.resource/common.css?ln=css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="/context/faces/javax.faces.resource/ie.css?ln=css"/>
<![endif]-->
It works fine without the conditional comment. I’m not using the context parameter javax.faces.FACELETS_SKIP_COMMENTS. How is this caused and how can I solve it?
This indeed won’t work as Facelets implicitly HTML-escapes the comment’s contents. Your best bet is to put it in a
<h:outputText escape="false">as follows:This is however a line of ugliness. The OmniFaces JSF utility library has a
<o:conditionalComment>for exactly this purpose:Unrelated to the concrete problem, you are not really using the
libraryattribute the right way. It should identify a common “theme”, not the subfolder where the files are placed in, just put that subfolder in thenameattribute instead. See also What is the JSF resource library for and how should it be used?