Title: [244066] trunk/Tools
Revision
244066
Author
[email protected]
Date
2019-04-08 18:54:24 -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.

* WebKitTestRunner/InjectedBundle/win/AccessibilityUIElementWin.cpp:
(WTR::AccessibilityUIElement::replaceTextInRange): Added.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (244065 => 244066)


--- trunk/Tools/ChangeLog	2019-04-09 01:38:50 UTC (rev 244065)
+++ trunk/Tools/ChangeLog	2019-04-09 01:54:24 UTC (rev 244066)
@@ -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.
+
+        * WebKitTestRunner/InjectedBundle/win/AccessibilityUIElementWin.cpp:
+        (WTR::AccessibilityUIElement::replaceTextInRange): Added.
+
 2019-04-08  Don Olmstead  <[email protected]>
 
         [CMake][WinCairo] Separate copied headers into different directories

Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/win/AccessibilityUIElementWin.cpp (244065 => 244066)


--- trunk/Tools/WebKitTestRunner/InjectedBundle/win/AccessibilityUIElementWin.cpp	2019-04-09 01:38:50 UTC (rev 244065)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/win/AccessibilityUIElementWin.cpp	2019-04-09 01:54:24 UTC (rev 244066)
@@ -979,6 +979,12 @@
     return nullptr;
 }
 
+bool AccessibilityUIElement::replaceTextInRange(JSStringRef, int, int)
+{
+    notImplemented();
+    return false;
+}
+
 } // namespace  WTF
 
 #endif // HAVE(ACCESSIBILITY)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to