You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Maxim Solodovnik (JIRA)" <ji...@apache.org> on 2018/03/28 15:39:00 UTC

[jira] [Commented] (WICKET-6546) CssContentHeaderItem comments CSS code with HTML comments

    [ https://issues.apache.org/jira/browse/WICKET-6546?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16417568#comment-16417568 ] 

Maxim Solodovnik commented on WICKET-6546:
------------------------------------------

Works as expected on {{static}} html page

Will try to check with quick-start

> CssContentHeaderItem comments CSS code with HTML comments
> ---------------------------------------------------------
>
>                 Key: WICKET-6546
>                 URL: https://issues.apache.org/jira/browse/WICKET-6546
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 6.24.0, 6.29.0
>            Reporter: Robert Niestroj
>            Priority: Minor
>
> CssContentHeaderItem wraps the passed CSS in HTML comments thus rendering invalid markup.
> Example code:
>  
> {code:java}
> @Override
> public void renderHead(Component component, IHeaderResponse response) {
>    super.renderHead(component, response);
>    response.render(CssContentHeaderItem.forCSS(".select2-container--open {z-index: 100000;}", "select2-mod", ""));
> }
> {code}
> Renders:
>  
> {code:java}
> <style type="text/css" id="select2-mod">
> <!-- .select2-container--open {z-index: 100000;}-->
> </style>{code}
> The HTML comments in the CSS make the response invalid and in the browser you get a XML Parsing Error - Not Well Formed.
>  
> It should not render this invalid html comments in CSS.
> Looking at the source code i think the error is in the CssUtils class: https://github.com/apache/wicket/blob/wicket-6.x/wicket-core/src/main/java/org/apache/wicket/core/util/string/CssUtils.java
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)