Changeset 145361 in webkit


Ignore:
Timestamp:
Mar 11, 2013 7:19:29 AM (11 years ago)
Author:
Christophe Dumez
Message:

[EFL][GTK][WKTR] Regression(r145231): Undefined symbol in libTestRunnerInjectedBundle.so
https://bugs.webkit.org/show_bug.cgi?id=111970

Reviewed by Chris Fleizach.

Provide dummy implementation for AccessibilityUIElement::supportedActions() in ATK
or libTestRunnerInjectedBundle.so cannot be loaded in EFL / GTK otherwise, due to
undefined symbol.

  • WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:

(WTR::AccessibilityUIElement::supportedActions):
(WTR):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r145355 r145361  
     12013-03-11  Christophe Dumez  <ch.dumez@sisa.samsung.com>
     2
     3        [EFL][GTK][WKTR] Regression(r145231): Undefined symbol in libTestRunnerInjectedBundle.so
     4        https://bugs.webkit.org/show_bug.cgi?id=111970
     5
     6        Reviewed by Chris Fleizach.
     7
     8        Provide dummy implementation for AccessibilityUIElement::supportedActions() in ATK
     9        or libTestRunnerInjectedBundle.so cannot be loaded in EFL / GTK otherwise, due to
     10        undefined symbol.
     11
     12        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
     13        (WTR::AccessibilityUIElement::supportedActions):
     14        (WTR):
     15
    1162013-03-11  Chris Hopman  <cjhopman@chromium.org>
    217
  • trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp

    r144294 r145361  
    11351135}
    11361136
     1137JSRetainPtr<JSStringRef> AccessibilityUIElement::supportedActions() const
     1138{
     1139    // FIXME: implement
     1140    return 0;
     1141}
     1142
    11371143} // namespace WTR
    11381144
Note: See TracChangeset for help on using the changeset viewer.