-
Notifications
You must be signed in to change notification settings - Fork 214
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
Css improvements 2022: combinators, attribute-selectors, and :checked #809
Conversation
ArneBab
commented
Dec 10, 2022
•
edited
Loading
edited
- Support CSS combinators, i.e. a ~ b
- support more attribute selectors
- support :checked
179e0cd
to
135a9e0
Compare
Added tests and fixed a bug that caused only the first char of the key in a[foo$=bar] to be checked, so $= was accepted — falsely. Found that bug because the test succeeded even after I removed the changes — unexpected success pointed to a bug ☺ Also simplified the implementation for ~, because > and + were already supported, I just hadn’t spotted that. Found while adding the test. |
e96b018
to
20e056b
Compare
6dff862
to
bc3a20d
Compare
It changed more than needed.
839599b
to
4e18c49
Compare
@Bombe I fixed the merge conflicts and force pushed the result — is this good to go? |
Merged — thank you for your review! |