-
Notifications
You must be signed in to change notification settings - Fork 37
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
Rearrange useraction group to match focus-within
before focus
#74
Conversation
Currently a style with `:focus-within` ends as `:focus` + `-within` generating incorrect rule
I'd love to see this pulled soon! This issue has had me struggling for a few days |
@theKashey |
According to stack overflow |
Solved by 8834c5e |
The original fix was reverted due to #80 |
Any chance this can be reevaluated? Would love to see this bug fixed! |
@dospunk |
@dperini My bad, it does seem to be working now! |
If there are comments about this working, should this issue be closed? I stumbled upon it from jsdom/jsdom#3359 |
The order is now correct. Not sure why this PR has't been marked as |
Currently a style with
:focus-within
ends as:focus
+-within
generating incorrect ruleThe code before was producing for something like
something like
Where
e.nodeName.toLowerCase()=="focus"
is definitely not what expected