varshluck / closure-stylesheets

Automatically exported from code.google.com/p/closure-stylesheets
Apache License 2.0
0 stars 0 forks source link

Improper Parsing of Unicode #31

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
When a string contains a unicode character specification, it does not parse 
properly. Specifically, it works when it is 6 digits long, but not if it is 
less.

This works:

.rule:after { content: " \00203a "; }

This breaks:

.rule:after { content: " \203a "; }

This should be allowed according to the CSS2 spec:

http://www.w3.org/TR/CSS2/syndata.html#characters

Original issue reported on code.google.com by mank...@google.com on 15 Mar 2013 at 3:13