Title: [244062] trunk/Tools
Revision
244062
Author
[email protected]
Date
2019-04-08 18:26:23 -0700 (Mon, 08 Apr 2019)

Log Message

AX: Support API: accessibilityReplaceRange:withText
https://bugs.webkit.org/show_bug.cgi?id=196636

Unreviewed build fix for Windows port.

* DumpRenderTree/AccessibilityUIElement.cpp:
(AccessibilityUIElement::replaceTextInRange): Changed the return value type from void to bool.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (244061 => 244062)


--- trunk/Tools/ChangeLog	2019-04-09 00:58:19 UTC (rev 244061)
+++ trunk/Tools/ChangeLog	2019-04-09 01:26:23 UTC (rev 244062)
@@ -1,3 +1,13 @@
+2019-04-08  Fujii Hironori  <[email protected]>
+
+        AX: Support API: accessibilityReplaceRange:withText
+        https://bugs.webkit.org/show_bug.cgi?id=196636
+
+        Unreviewed build fix for Windows port.
+
+        * DumpRenderTree/AccessibilityUIElement.cpp:
+        (AccessibilityUIElement::replaceTextInRange): Changed the return value type from void to bool.
+
 2019-04-08  Aakash Jain  <[email protected]>
 
         [ews-build] Scripts using Buildbot API have CORS error

Modified: trunk/Tools/DumpRenderTree/AccessibilityUIElement.cpp (244061 => 244062)


--- trunk/Tools/DumpRenderTree/AccessibilityUIElement.cpp	2019-04-09 00:58:19 UTC (rev 244061)
+++ trunk/Tools/DumpRenderTree/AccessibilityUIElement.cpp	2019-04-09 01:26:23 UTC (rev 244062)
@@ -1621,7 +1621,7 @@
 {
 }
 
-void AccessibilityUIElement::replaceTextInRange(JSStringRef, int, int)
+bool AccessibilityUIElement::replaceTextInRange(JSStringRef, int, int)
 {
     return false;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to