Changeset 44104 in webkit


Ignore:
Timestamp:
May 23, 2009 3:22:52 PM (15 years ago)
Author:
jmalonzo@webkit.org
Message:

2009-05-23 Jan Michael Alonzo <jmalonzo@webkit.org>

Reviewed by Xan Lopez.

[Gtk] ROLE_ROW_HEADER should not be used for list item bullets/numbers
https://bugs.webkit.org/show_bug.cgi?id=25900

Use ATK_ROLE_TEXT for ListMarkerRole.

  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (atkRole):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r44102 r44104  
     12009-05-23  Jan Michael Alonzo  <jmalonzo@webkit.org>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [Gtk] ROLE_ROW_HEADER should not be used for list item bullets/numbers
     6        https://bugs.webkit.org/show_bug.cgi?id=25900
     7
     8        Use ATK_ROLE_TEXT for ListMarkerRole.
     9
     10        * accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:
     11        (atkRole):
     12
    1132009-05-23  David Kilzer  <ddkilzer@apple.com>
    214
  • trunk/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp

    r43908 r44104  
    248248        return ATK_ROLE_IMAGE;
    249249    case ListMarkerRole:
    250         return ATK_ROLE_ROW_HEADER;
     250        return ATK_ROLE_TEXT;
    251251    case WebAreaRole:
    252252        //return ATK_ROLE_HTML_CONTAINER; // Is this right?
Note: See TracChangeset for help on using the changeset viewer.