Title: [244110] trunk/Tools
Revision
244110
Author
[email protected]
Date
2019-04-10 04:08:40 -0700 (Wed, 10 Apr 2019)

Log Message

Unreviewed. Fix WPE accessibility tests after r244059.

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

* WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp:
(WTR::AccessibilityUIElement::replaceTextInRange):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (244109 => 244110)


--- trunk/Tools/ChangeLog	2019-04-10 09:14:18 UTC (rev 244109)
+++ trunk/Tools/ChangeLog	2019-04-10 11:08:40 UTC (rev 244110)
@@ -1,3 +1,13 @@
+2019-04-10  Philippe Normand  <[email protected]>
+
+        Unreviewed. Fix WPE accessibility tests after r244059.
+
+        We are failing to load the injected bundle due to undefined symbol
+        AccessibilityUIElement::replaceTextInRange().
+
+        * WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp:
+        (WTR::AccessibilityUIElement::replaceTextInRange):
+
 2019-04-10  Takashi Komori  <[email protected]>
 
         [WinCairo][MiniBrowser] Pull down menu "Disable _javascript_" doesn't work.

Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp (244109 => 244110)


--- trunk/Tools/WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp	2019-04-10 09:14:18 UTC (rev 244109)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp	2019-04-10 11:08:40 UTC (rev 244110)
@@ -972,6 +972,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