Details
-
Bug
-
Status: In Progress
-
Resolution: Unresolved
-
1.6
-
None
-
Operating System: other
Platform: Other
Description
CSS character escape sequences do not seem to parse correctly.
For example, the following ruleset delivers a wrong element name for the selector via SAC:
.Headers\a0 \2b \a0 \28 Complex\29
{ display: inline }It should be the string "Headers\a0 \2b \a0 \28 Complex\29", but is currently delivered as "Headers
\a0 ", which is wrong according to the CSS21 parsing/tokenization rules. It seems that the parser
chokes on two subsequent character escapes that have been delimited by a single space character.