-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Focusable: Fix handling of visibility: collapse
#1843
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
Conversation
"collapse" is similar to "hidden", with a slight difference in the case of tr/tbody/td/colgroup elements. See https://www.w3.org/TR/CSS22/visufx.html#visibility See https://www.w3.org/TR/CSS22/tables.html#dynamic-effects See https://developer.mozilla.org/en-US/docs/Web/CSS/visibility#Table_example "visibility: collapse" elements are always not focusable, though. Commit d302596 introduced a regression by testing with `!== "hidden"` instead of `=== "visible"`.
|
Any chance this will eventually get reviewed (and, hopefully, merged)? It’s been 3 years. |
with 41 open PR's i feel like activity on Jquery UI is very slow to get merged but 3 years is a little excessive. Hopefully this will get merged before 1.13 is released! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 by reading
Sorry for the delay.
Landed, thank you! |
Great, dziękuję! |
"collapse" is similar to "hidden", with a slight difference in the case of
tr/tbody/td/colgroup
elements.See https://www.w3.org/TR/CSS22/visufx.html#visibility
See https://www.w3.org/TR/CSS22/tables.html#dynamic-effects
See https://developer.mozilla.org/en-US/docs/Web/CSS/visibility#Table_example
"visibility: collapse" elements are always not focusable, though.
Commit d302596 introduced this regression by testing with
!== "hidden"
instead of=== "visible"
.