Title: [183833] trunk/Tools
Revision
183833
Author
[email protected]
Date
2015-05-05 15:25:27 -0700 (Tue, 05 May 2015)

Log Message

Unreviewed test fix after r183798.

* DumpRenderTree/win/AccessibilityUIElementWin.cpp:
(convertToDRTLabel): Mimic behavior of Mac accessibility output
so we can share results.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (183832 => 183833)


--- trunk/Tools/ChangeLog	2015-05-05 22:20:34 UTC (rev 183832)
+++ trunk/Tools/ChangeLog	2015-05-05 22:25:27 UTC (rev 183833)
@@ -1,3 +1,11 @@
+2015-05-05  Brent Fulgham  <[email protected]>
+
+        Unreviewed test fix after r183798.
+
+        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
+        (convertToDRTLabel): Mimic behavior of Mac accessibility output
+        so we can share results.
+
 2015-05-05  Alex Christensen  <[email protected]>
 
         [Content Extensions] Use less memory to store the json input.

Modified: trunk/Tools/DumpRenderTree/win/AccessibilityUIElementWin.cpp (183832 => 183833)


--- trunk/Tools/DumpRenderTree/win/AccessibilityUIElementWin.cpp	2015-05-05 22:20:34 UTC (rev 183832)
+++ trunk/Tools/DumpRenderTree/win/AccessibilityUIElementWin.cpp	2015-05-05 22:25:27 UTC (rev 183833)
@@ -250,6 +250,8 @@
         return _bstr_t(L"AXWebArea");
     if (!wcscmp(roleName, L"column"))
         return _bstr_t(L"AXColumn");
+    if (!wcscmp(roleName, L"column header"))
+        return _bstr_t(L"AXCell");
     if (!wcscmp(roleName, L"combo box"))
         return _bstr_t(L"AXComboBox");
     if (!wcscmp(roleName, L"grouping"))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to