﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
527,_strip_css_comments may be unable to delete a comment,uchida_t <dc578av_adle@…>,cmlenz,"http://genshi.edgewall.org/browser/trunk/genshi/filters/html.py?rev=1175#L541

_strip_css_comments is called only once.[[BR]]
So in the following description, a css comment remains.[[BR]]
{{{
//#!html
<div style=""width: exp//**/**/ression(alert(1))"">div</div>
}}}
I think this code is better.
{{{
#!python
    def _strip_css_comments(self, text):
        while True:
            s = self._CSS_COMMENTS('', text)
            if s == text:
                return s
}}}",defect,new,major,0.9,General,0.6,,,
