We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Let's say we have a selector used to select an element in HTML with the class name "10w"
.\31 0w
This is valid selector according to https://jigsaw.w3.org/css-validator/#validate_by_input (enter .\31 0w {})
.\31 0w {}
But when we parse it we get the following result
{ "type": "selectors", "nodes": [ { "type": "selector", "nodes": [ { "type": "element", "name": "31" }, { "type": "spacing", "value": " " }, { "type": "invalid", "value": "0" }, { "type": "element", "name": "w" } ] } ] }
While expected result is
{ "type": "selectors", "nodes": [ { "type": "selector", "nodes": [ { "type": "class", "name": "10w" } ] } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let's say we have a selector used to select an element in HTML with the class name "10w"
This is valid selector according to https://jigsaw.w3.org/css-validator/#validate_by_input (enter
.\31 0w {}
)But when we parse it we get the following result
While expected result is
The text was updated successfully, but these errors were encountered: