Hey,
I have an issue where the parser is removing comma's separating box-shadow properties, example:
div { box-shadow: 0 0 0 1px #fff, 0 0 0 2px silver; }
becomes:
div { box-shadow: 0 0 0 1px #fff 0 0 0 2px silver; }
is there a way to make it not remove the comma?
Cheers
Hi Paul,
many thanks for this bug report. This is now fixed and a new SNAPSHOT build is available. Feel free to open issues if facing other problems.
Hope CSSParser is of any use for you
RBRi
On Wed, 11 Jan 2017 21:47:51 +0000 Paul K wrote:
Hey, I have an issue where the parser is removing comma's separating box-shadow properties, example: div { box-shadow: 0 0 0 1px #fff, 0 0 0 2px silver; } becomes: div { box-shadow: 0 0 0 1px #fff 0 0 0 2px silver; } is there a way to make it not remove the comma? Cheers Parser removing comma's separating box-shadow rules Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/cssparser/discussion/283564/ To unsubscribe from further messages, please visit https://sourceforge.net/auth/subscriptions/
Parser removing comma's separating box-shadow rules
Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/cssparser/discussion/283564/
To unsubscribe from further messages, please visit https://sourceforge.net/auth/subscriptions/
Log in to post a comment.
Hey,
I have an issue where the parser is removing comma's separating box-shadow properties, example:
div { box-shadow: 0 0 0 1px #fff, 0 0 0 2px silver; }
becomes:
div { box-shadow: 0 0 0 1px #fff 0 0 0 2px silver; }
is there a way to make it not remove the comma?
Cheers
Hi Paul,
many thanks for this bug report. This is now fixed and a new SNAPSHOT build is available.
Feel free to open issues if facing other problems.
Hope CSSParser is of any use for you
On Wed, 11 Jan 2017 21:47:51 +0000 Paul K wrote: