If I parse CSS like this
<style type="text/css">
#main {
display: none;
}
I get the following result:
<style type="text/css">*#main {
display: none;
}
The star will not be included if I put an html tag to the ID-Element or
Class-Element like this
<style type="text/css">
div#main {
display: none;
}
Then everything works fine.
I still figured out that the batik-css-parser set the DefaultElementSelector
which return a "*" in the toString() - method if no localName was set. But
don't know why.
Original issue reported on code.google.com by nmaas...@googlemail.com on 14 Dec 2010 at 10:16
Original issue reported on code.google.com by
nmaas...@googlemail.comon 14 Dec 2010 at 10:16