Changeset 53163 in webkit


Ignore:
Timestamp:
Jan 12, 2010 2:07:21 PM (14 years ago)
Author:
jhoneycutt@apple.com
Message:

MSAA: Accessibility role of <select multiple> elements is wrong

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

Reviewed by Darin Adler.

WebKit/win:

  • AccessibleBase.cpp:

(MSAARole):
Map the WebCore::ListBox and WebCore::ListBoxOption roles to the MSAA
"list" and "list item" roles.

LayoutTests:

  • platform/win/accessibility/multiple-select-element-role-expected.txt: Added.
  • platform/win/accessibility/multiple-select-element-role.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53158 r53163  
     12010-01-11  Jon Honeycutt  <jhoneycutt@apple.com>
     2
     3        MSAA: Accessibility role of <select multiple> elements is wrong
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=33522
     6
     7        Reviewed by Darin Adler.
     8
     9        * platform/win/accessibility/multiple-select-element-role-expected.txt: Added.
     10        * platform/win/accessibility/multiple-select-element-role.html: Added.
     11
    1122010-01-12  Beth Dakin  <bdakin@apple.com>
    213
  • trunk/WebKit/win/AccessibleBase.cpp

    r52781 r53163  
    557557            return ROLE_SYSTEM_GROUPING;
    558558        case WebCore::ListRole:
     559        case WebCore::ListBoxRole:
    559560            return ROLE_SYSTEM_LIST;
    560561        case WebCore::TableRole:
     
    567568            return ROLE_SYSTEM_GRAPHIC;
    568569        case WebCore::ListItemRole:
     570        case WebCore::ListBoxOptionRole:
    569571            return ROLE_SYSTEM_LISTITEM;
    570572        case WebCore::PopUpButtonRole:
  • trunk/WebKit/win/ChangeLog

    r53022 r53163  
     12010-01-11  Jon Honeycutt  <jhoneycutt@apple.com>
     2
     3        MSAA: Accessibility role of <select multiple> elements is wrong
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=33522
     6
     7        Reviewed by Darin Adler.
     8
     9        * AccessibleBase.cpp:
     10        (MSAARole):
     11        Map the WebCore::ListBox and WebCore::ListBoxOption roles to the MSAA
     12        "list" and "list item" roles.
     13
    1142010-01-08  Brent Fulgham  <bfulgham@webkit.org>
    215
Note: See TracChangeset for help on using the changeset viewer.