You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Andrew Robinson <an...@gmail.com> on 2007/07/07 21:31:01 UTC

Stop escaping of HTML characters in CSS in the style property?

If I set a style to:

filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='servlet?param1=a&param2=b');, sizingMethod='image');

becomes:

filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='servlet?param1=a&amp;param2=b');, sizingMethod='image');

The & should not be escaped as &amp; as that is an invalid URL.

Is there a way to stop this?