[Webkit-unassigned] [Bug 133163] New: AX: WebKit does not recognize ARIA 1.1 tables
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed May 21 18:46:00 PDT 2014
https://bugs.webkit.org/show_bug.cgi?id=133163
Summary: AX: WebKit does not recognize ARIA 1.1 tables
Product: WebKit
Version: 528+ (Nightly build)
Platform: All
OS/Version: All
Status: NEW
Severity: Normal
Priority: P2
Component: Accessibility
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: jcraig at apple.com
CC: webkit-bug-importer at group.apple.com
Created an attachment (id=231847)
--> (https://bugs.webkit.org/attachment.cgi?id=231847&action=review)
test case
This is how we're planning to transition into ARIA 1.1 static tables from ARIA 1.0 grids. (Yes, I know the example is redundant.)
WebKit exposes this as 0 columns, 0 rows due to the fallback role tokens.
<table border="0" role="table grid">
<tr role="row">
<th role="columnheader">Foo</th>
<th role="columnheader">Bar</th>
<th role="columnheader">Baz</th>
</tr>
<tr role="row">
<td role="cell gridcell">Bif</td>
<td role="cell gridcell">Baf</td>
<td role="cell gridcell">Bop</td>
</tr>
</table>
Technically this should "work" as an ARIA 1.0 grid, today. Roles should fall back to grid/gridcell, respectively.
--
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