Imagine a\ b is parsed as an <ident>. What are the code points of the produced ident?
- Option 1: the indentifier is stored in escaped form
a
\
b
- Option 2: the indentifier is stored raw
a
b
https://drafts.csswg.org/css-values/#css-css-identifier seems to assume option 1:
CSS identifiers, generically denoted by <ident>, consist of a sequence of characters conforming to the <ident-token> grammar.
https://drafts.csswg.org/cssom/#serialize-an-identifier seems to assume option 2, since it escapes manually.