Title: [244073] trunk/Tools
Revision
244073
Author
carlo...@webkit.org
Date
2019-04-09 02:48:21 -0700 (Tue, 09 Apr 2019)

Log Message

Unreviewed. Fix ATK accessibility tests after r244059.

We are failing to load the injected bundle due to undefined symbol
AccessibilityUIElement::replaceTextInRange().

* WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
(WTR::AccessibilityUIElement::replaceTextInRange):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (244072 => 244073)


--- trunk/Tools/ChangeLog	2019-04-09 09:01:35 UTC (rev 244072)
+++ trunk/Tools/ChangeLog	2019-04-09 09:48:21 UTC (rev 244073)
@@ -1,3 +1,13 @@
+2019-04-09  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        Unreviewed. Fix ATK accessibility tests after r244059.
+
+        We are failing to load the injected bundle due to undefined symbol
+        AccessibilityUIElement::replaceTextInRange().
+
+        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
+        (WTR::AccessibilityUIElement::replaceTextInRange):
+
 2019-04-08  Fujii Hironori  <hironori.fu...@sony.com>
 
         AX: Support API: accessibilityReplaceRange:withText

Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp (244072 => 244073)


--- trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp	2019-04-09 09:01:35 UTC (rev 244072)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp	2019-04-09 09:48:21 UTC (rev 244073)
@@ -2430,6 +2430,12 @@
     return stringAtOffset(m_element, ATK_TEXT_BOUNDARY_SENTENCE_START, offset);
 }
 
+bool AccessibilityUIElement::replaceTextInRange(JSStringRef, int, int)
+{
+    notImplemented();
+    return false;
+}
+
 } // namespace WTR
 
 #endif // HAVE(ACCESSIBILITY)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to