Changeset 202417 in webkit


Ignore:
Timestamp:
Jun 23, 2016 10:20:11 PM (8 years ago)
Author:
pvollan@apple.com
Message:

[Win] The test accessibility/aria-labelledby-overrides-label.html is failing.
https://bugs.webkit.org/show_bug.cgi?id=159057

Reviewed by Brent Fulgham.

The test expects the label to have a static text role, but currently it has a
group role.

  • AccessibleBase.cpp:

(MSAARole): Change the role of labels to static text.

Location:
trunk/Source/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/win/AccessibleBase.cpp

    r200677 r202417  
    880880        case WebCore::ListMarkerRole:
    881881        case WebCore::StaticTextRole:
     882        case WebCore::LabelRole:
    882883            return ROLE_SYSTEM_STATICTEXT;
    883884        case WebCore::OutlineRole:
     
    918919        case WebCore::FooterRole:
    919920        case WebCore::FormRole:
    920         case WebCore::LabelRole:
    921921        case WebCore::ParagraphRole:
    922922            return ROLE_SYSTEM_GROUPING;
  • trunk/Source/WebKit/win/ChangeLog

    r202410 r202417  
     12016-06-23  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] The test accessibility/aria-labelledby-overrides-label.html is failing.
     4        https://bugs.webkit.org/show_bug.cgi?id=159057
     5
     6        Reviewed by Brent Fulgham.
     7
     8        The test expects the label to have a static text role, but currently it has a
     9        group role.
     10 
     11        * AccessibleBase.cpp:
     12        (MSAARole): Change the role of labels to static text.
     13
    1142016-06-23  Alex Christensen  <achristensen@webkit.org>
    215
Note: See TracChangeset for help on using the changeset viewer.