[Webkit-unassigned] [Bug 79080] Row and column headers not exposed by WebCore accessibility

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Mar 16 22:02:28 PDT 2012


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


James Craig <james at cookiecrook.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |james at cookiecrook.com




--- Comment #11 from James Craig <james at cookiecrook.com>  2012-03-16 22:02:28 PST ---
Hybridized roles make for ambiguous implementations and authoring. The current version of the spec is pretty clear that an element should have only one role, landmark or otherwise, so it can either be a list, or navigation, but not both.

That said, you can easily get the result you're looking for by replacing this:

    <table role="complementary">…
    <ul role="navigation">…

With this:

    <div role="complementary"><table>…
    <nav role="navigation"><ul>…

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list