Title: [148086] trunk/Tools
Revision
148086
Author
[email protected]
Date
2013-04-10 02:17:09 -0700 (Wed, 10 Apr 2013)

Log Message

[ATK] REGRESSION(r148033): Add a stub for AccessibilityUIElement::pathDescription().
https://bugs.webkit.org/show_bug.cgi?id=114342

Reviewed by Gyuyoung Kim.

Commit 148033 only added an implementation for the Mac port, which made
other ports fail most tests since loading the injected bundle failed
with a missing symbol.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (148085 => 148086)


--- trunk/Tools/ChangeLog	2013-04-10 09:06:48 UTC (rev 148085)
+++ trunk/Tools/ChangeLog	2013-04-10 09:17:09 UTC (rev 148086)
@@ -1,3 +1,17 @@
+2013-04-10  Raphael Kubo da Costa  <[email protected]>
+
+        [ATK] REGRESSION(r148033): Add a stub for AccessibilityUIElement::pathDescription().
+        https://bugs.webkit.org/show_bug.cgi?id=114342
+
+        Reviewed by Gyuyoung Kim.
+
+        Commit 148033 only added an implementation for the Mac port, which made
+        other ports fail most tests since loading the injected bundle failed
+        with a missing symbol.
+
+        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
+        (WTR::AccessibilityUIElement::pathDescription):
+
 2013-04-10  Artur Moryc  <[email protected]>
 
         [EFL] Add spell checking option to MiniBrowser

Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp (148085 => 148086)


--- trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp	2013-04-10 09:06:48 UTC (rev 148085)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp	2013-04-10 09:17:09 UTC (rev 148086)
@@ -31,6 +31,7 @@
 
 #include "InjectedBundle.h"
 #include "InjectedBundlePage.h"
+#include "NotImplemented.h"
 #include <_javascript_Core/JSStringRef.h>
 #include <atk/atk.h>
 #include <wtf/Assertions.h>
@@ -1151,6 +1152,12 @@
     return 0;
 }
 
+JSRetainPtr<JSStringRef> AccessibilityUIElement::pathDescription() const
+{
+    notImplemented();
+    return 0;
+}
+
 } // namespace WTR
 
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to