Title: [151479] trunk/Source/WebKit/win
Revision
151479
Author
bfulg...@apple.com
Date
2013-06-11 16:51:33 -0700 (Tue, 11 Jun 2013)

Log Message

[Windows] Unreviewed build correction after r151440.

* AccessibleBase.cpp:
(MSAARole): Switch back to emiting ROLE_SYSTEM_LISTITEM for
ListItemRole Web role to avoid breaking existing test.

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/AccessibleBase.cpp (151478 => 151479)


--- trunk/Source/WebKit/win/AccessibleBase.cpp	2013-06-11 23:16:53 UTC (rev 151478)
+++ trunk/Source/WebKit/win/AccessibleBase.cpp	2013-06-11 23:51:33 UTC (rev 151479)
@@ -672,11 +672,8 @@
         case WebCore::ImageMapRole:
         case WebCore::ImageRole:
             return ROLE_SYSTEM_GRAPHIC;
-        // Note: ListItemRole seems like it should map to ROLE_SYSTEM_LISTITEM, but Mac OS maps
-        // this to the equivalent of ROLE_SYSTEM_GROUPING. To provide consistent behavior on both
-        // platforms we will follow that mapping:
         case WebCore::ListItemRole:
-            return ROLE_SYSTEM_GROUPING;
+            return ROLE_SYSTEM_LISTITEM;
         case WebCore::ListBoxOptionRole:
         case WebCore::MenuListOptionRole:
             return ROLE_SYSTEM_STATICTEXT;

Modified: trunk/Source/WebKit/win/ChangeLog (151478 => 151479)


--- trunk/Source/WebKit/win/ChangeLog	2013-06-11 23:16:53 UTC (rev 151478)
+++ trunk/Source/WebKit/win/ChangeLog	2013-06-11 23:51:33 UTC (rev 151479)
@@ -1,5 +1,13 @@
 2013-06-11  Brent Fulgham  <bfulg...@apple.com>
 
+        [Windows] Unreviewed build correction after r151440.
+
+        * AccessibleBase.cpp:
+        (MSAARole): Switch back to emiting ROLE_SYSTEM_LISTITEM for
+        ListItemRole Web role to avoid breaking existing test.
+
+2013-06-11  Brent Fulgham  <bfulg...@apple.com>
+
         [Windows] Implement 'attributeValue' accessor to support testing.
         https://bugs.webkit.org/show_bug.cgi?id=117513
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to