Changeset 52350 in webkit


Ignore:
Timestamp:
Dec 18, 2009 4:05:14 PM (14 years ago)
Author:
jhoneycutt@apple.com
Message:

MSAA: Accessibility role of list markers is wrong

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

Reviewed by Adam Roben.

WebKit/win:

  • AccessibleBase.cpp:

(MSAARole):
Make the WebCore list marker role map to the MSAA static text role.

LayoutTests:

  • platform/win/accessibility/list-marker-role-expected.txt: Added.
  • platform/win/accessibility/list-marker-role.html: Added.

Verify that the list marker role is "text".

Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r52341 r52350  
     12009-12-17  Jon Honeycutt  <jhoneycutt@apple.com>
     2
     3        MSAA: Accessibility role of list markers is wrong
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=32687
     6
     7        Reviewed by Adam Roben.
     8
     9        * platform/win/accessibility/list-marker-role-expected.txt: Added.
     10        * platform/win/accessibility/list-marker-role.html: Added.
     11        Verify that the list marker role is "text".
     12
    1132009-12-18  Brian Weinstein  <bweinstein@apple.com>
    214
  • trunk/WebKit/win/AccessibleBase.cpp

    r52233 r52350  
    543543        case WebCore::TextFieldRole:
    544544        case WebCore::TextAreaRole:
    545         case WebCore::ListMarkerRole:
    546545        case WebCore::EditableTextRole:
    547546            return ROLE_SYSTEM_TEXT;
     547        case WebCore::ListMarkerRole:
    548548        case WebCore::StaticTextRole:
    549549            return ROLE_SYSTEM_STATICTEXT;
  • trunk/WebKit/win/ChangeLog

    r52314 r52350  
     12009-12-17  Jon Honeycutt  <jhoneycutt@apple.com>
     2
     3        MSAA: Accessibility role of list markers is wrong
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=32687
     6
     7        Reviewed by Adam Roben.
     8
     9        * AccessibleBase.cpp:
     10        (MSAARole):
     11        Make the WebCore list marker role map to the MSAA static text role.
     12
    1132009-12-18  Adam Roben  <aroben@apple.com>
    214
Note: See TracChangeset for help on using the changeset viewer.