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

Expectations for aria-hidden and focused elements #2181

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Commits on May 20, 2024

  1. Expectations for aria-hidden and focused elements

    This PR closes #1765 and is related to work that was done in #2037, but scoped only to the original issue I filed.
    
    The intent of this PR is to identify not only how user agents would need to handle focusable elements that are aria-hidden (explicitly or due to being a descendant of an aria-hidden container) - but for the case where a focusable element is within an aria-hidden container, that the entire subtree would need to be re-exposed so that any other relevant information to the user could be made available.  (e.g., so as to not just expose a "learn more" link, with no way to determine what someone would be learning about)
    
    a simple example being like:
    
    ```
    <div aria-hidden=true>
      <h3>Something or other</h3>
       some details about said something, or other.
      <a href=#>Learn more!</a>
    </div>
    ```
    scottaohara authored May 20, 2024
    Configuration menu
    Copy the full SHA
    de87611 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Update index.html

    pulling in aaron's suggested edits
    scottaohara authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    b73f16f View commit details
    Browse the repository at this point in the history
  2. include ref to tree exclusion section

    adds in a reference to the tree exclusion section, and updates bits of content here to include reference to html's `inert` attribute, and to try and acknowledge the change to aria-hidden=false by also referencing aria-hidden=undefined.
    scottaohara authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    f8d7491 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2024

  1. Update index.html

    scottaohara authored Sep 11, 2024
    Configuration menu
    Copy the full SHA
    c05786b View commit details
    Browse the repository at this point in the history
  2. Update index.html

    scottaohara authored Sep 11, 2024
    Configuration menu
    Copy the full SHA
    8d575af View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Fixing prettier error

    this has nothing to do with my PR, but there is an errant closing `</p>` tag after a list in the progressbar section. 
    
    making this change here to get rid of the error
    scottaohara authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    7772c69 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    24aa28b View commit details
    Browse the repository at this point in the history