Changeset 169632 in webkit


Ignore:
Timestamp:
Jun 5, 2014 5:23:00 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

AX: Add support for ARIA 1.1 'none' role
https://bugs.webkit.org/show_bug.cgi?id=133367

Patch by Michael Timbrook <timbrook@apple.com> on 2014-06-05
Reviewed by Chris Fleizach.

Source/WebCore:
Added support for the 'none' role by added a lookup for it to go to PresentationalRole
Test: accessibility/aria-none-role.html

  • accessibility/AccessibilityObject.cpp:

(WebCore::initializeRoleMap):

LayoutTests:
Added the tests to cover the behavior of the 'none' role

  • accessibility/aria-none-role-expected.txt: Added.
  • accessibility/aria-none-role.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r169631 r169632  
     12014-06-05  Michael Timbrook  <timbrook@apple.com>
     2
     3        AX: Add support for ARIA 1.1 'none' role
     4        https://bugs.webkit.org/show_bug.cgi?id=133367
     5
     6        Reviewed by Chris Fleizach.
     7
     8        Added the tests to cover the behavior of the 'none' role
     9        * accessibility/aria-none-role-expected.txt: Added.
     10        * accessibility/aria-none-role.html: Added.
     11
    1122014-06-05  Joanmarie Diggs  <jdiggs@igalia.com>
    213
  • trunk/Source/WebCore/ChangeLog

    r169631 r169632  
     12014-06-05  Michael Timbrook  <timbrook@apple.com>
     2
     3        AX: Add support for ARIA 1.1 'none' role
     4        https://bugs.webkit.org/show_bug.cgi?id=133367
     5
     6        Reviewed by Chris Fleizach.
     7
     8        Added support for the 'none' role by added a lookup for it to go to PresentationalRole
     9        Test: accessibility/aria-none-role.html
     10
     11        * accessibility/AccessibilityObject.cpp:
     12        (WebCore::initializeRoleMap):
     13
    1142014-06-05  Joanmarie Diggs  <jdiggs@igalia.com>
    215
  • trunk/Source/WebCore/accessibility/AccessibilityObject.cpp

    r168427 r169632  
    17821782        { "menuitemcheckbox", MenuItemCheckboxRole },
    17831783        { "menuitemradio", MenuItemRadioRole },
     1784        { "none", PresentationalRole },
    17841785        { "note", DocumentNoteRole },
    17851786        { "navigation", LandmarkNavigationRole },
Note: See TracChangeset for help on using the changeset viewer.