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

dont send focus events to hidden focusable elements #4913

Merged
merged 6 commits into from
Sep 26, 2019

Conversation

kuceb
Copy link
Contributor

@kuceb kuceb commented Aug 2, 2019

a few notes:

  • the issue here was that calling .focus on a focusable element will not send events if the element is display:none or visibility:hidden (or inherited from ancestor)
  • don't use the same visibility algo as :visible since focusing an input of 0x0 size or opacity:0 will still send focus events
  • display:none needs to be checked via walking up the parent nodes, while visibility:none is inherited and can be checked with getComputedStype (or $.css)

tasks

  • [feedback] add links to w3c, rename method to W3CFocusable for clarity

Pre-merge Tasks

  • Have tests been added/updated for the changes in this PR?
  • Has the original issue been tagged with a release in ZenHub?

@cypress
Copy link

cypress bot commented Aug 2, 2019



Test summary

3359 0 47 0


Run details

Project cypress
Status Passed
Commit 885f4e4
Started Sep 25, 2019 7:49 PM
Ended Sep 25, 2019 7:54 PM
Duration 04:46 💡
OS Linux Debian - 9.8
Browser Multiple

View run in Cypress Dashboard ➡️


This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Dashboard

@kuceb kuceb requested a review from brian-mann September 25, 2019 19:46
@jennifer-shehane jennifer-shehane merged commit 7d750c4 into develop Sep 26, 2019
grabartley pushed a commit to grabartley/cypress that referenced this pull request Oct 6, 2019
* dont send focus events to hidden focusable elements

* refactor into isFocusableAndNotHidden

* add w3c notes, rename method


Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
@emilyrohrbough emilyrohrbough deleted the no-focus-hidden branch August 1, 2024 13:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

onFocus event incorrectly fires on a hidden element starting on v3.3.2
4 participants