Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issues with parseIdentifier and escaped control characters #1053

Open
JakeQZ opened this issue Mar 2, 2025 · 0 comments
Open

Issues with parseIdentifier and escaped control characters #1053

JakeQZ opened this issue Mar 2, 2025 · 0 comments

Comments

@JakeQZ
Copy link
Contributor

JakeQZ commented Mar 2, 2025

During removal of support for IE hacks (#995), it was found that

  • parseIdentifier() treats the first character differently to subsequent characters - it does not attempt to escape the first character;
  • it escapes characters like TAB or NUL with the literal character, so the result is, e.g., a \ followed by an actual TAB, rather than \t or \9.

Perhaps these characters should not be allowed in identifiers anyway. Would need to check the spec, but I think the idea of the IE hacks was for IE-specific rules, so I expect these characters should be disallowed (as well as other control characters).

This was the test CSS:

p {
    padding-right: .75rem \9;
    background-image: none \9;
    color:red\9\0;
    background-color:red \9 \0;
    background-color:red \9 \0 !important;
    content: "red \9\0";
    content: "red\0abc";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant