[Webkit-unassigned] [Bug 269523] New: AX:

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 15 16:19:19 PST 2024


https://bugs.webkit.org/show_bug.cgi?id=269523

            Bug ID: 269523
           Summary: AX:
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: All
                OS: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Accessibility
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: scottaohara at yahoo.com
                CC: andresg_22 at apple.com,
                    webkit-bug-importer at group.apple.com

The ARIA spec is updating with a new requirement where user agents must ignore the aria-hidden=true attribute when used on the HTML or BODY element of a web page.

The specific text:

To prevent authors erroneously hiding entire window-rendered documents only to those using assistive technology, user agents MUST NOT expose the hidden state to assistive technologies if it is specified on the root element or the host language element that represents the contents of the primary document in view. For instance, the html or body elements in an HTML document, or the root svg element if it is rendered as its own primary document in the browser window. If authors were to specify aria-hidden="true" on the opening tag for an embedded document, for instance on a math or svg embedded within an HTML document, user agents would still be expected to hide these elements from assistive technologies.

A basic test case, such as, would result in no ignored elements, as the aria-hidden=true on the html element would be ignored.

<html lang=en aria-hidden=true>
  <h1>hello world</h1>
  <p>my content</p>
  <a href=#>a hyperlink</a>
</html>


ARIA PR 1880 - https://github.com/w3c/aria/pull/1880

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240216/dbdaf9a6/attachment-0001.htm>


More information about the webkit-unassigned mailing list