You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding a space when encoding ids starting with digits
escapeCss() references the following:
https://drafts.csswg.org/cssom/#serialize-an-identifier
> To escape a character as code point means to create a string of "\"
> (U+005C), followed by the Unicode code point as the smallest possible
> number of hexadecimal digits in the range 0-9 a-f (U+0030 to U+0039 and
> U+0061 to U+0066) to represent the code point in base 16, *followed by a
> single SPACE (U+0020).*
Currently the digit is being encoded, but no SPACE is being added.
Adding the SPACE.
Signed-off-by: Bob Baron <[email protected]>
Signed-off-by: Jason Leyba <[email protected]>
0 commit comments