bug 379755. JAWS does not read Bookmarks or History when sidebar opens. r=david.bolter

This commit is contained in:
aaronleventhal@moonset.net 2007-05-07 11:48:34 -07:00
Родитель 160eeb3fdb
Коммит d401823883
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -114,7 +114,13 @@ static const WindowsRoleMapItem gWindowsRoleMap[] = {
{ ROLE_SYSTEM_DOCUMENT, ROLE_SYSTEM_DOCUMENT },
// nsIAccessibleRole::ROLE_PANE
{ ROLE_SYSTEM_PANE, ROLE_SYSTEM_PANE },
// We used to map to ROLE_SYSTEM_PANE, but JAWS would
// not read the accessible name for the contaning pane.
// However, JAWS will read the accessible name for a groupbox.
// By mapping a PANE to a GROUPING, we get no undesirable effects,
// but fortunately JAWS will then read the group's label,
// when an inner control gets focused.
{ ROLE_SYSTEM_GROUPING , ROLE_SYSTEM_GROUPING },
// nsIAccessibleRole::ROLE_CHART
{ ROLE_SYSTEM_CHART, ROLE_SYSTEM_CHART },