Changeset 148086 in webkit


Ignore:
Timestamp:
Apr 10, 2013 2:17:09 AM (11 years ago)
Author:
rakuco@webkit.org
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r148084 r148086  
     12013-04-10  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
     2
     3        [ATK] REGRESSION(r148033): Add a stub for AccessibilityUIElement::pathDescription().
     4        https://bugs.webkit.org/show_bug.cgi?id=114342
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Commit 148033 only added an implementation for the Mac port, which made
     9        other ports fail most tests since loading the injected bundle failed
     10        with a missing symbol.
     11
     12        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
     13        (WTR::AccessibilityUIElement::pathDescription):
     14
    1152013-04-10  Artur Moryc  <a.moryc@samsung.com>
    216
  • trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp

    r147236 r148086  
    3232#include "InjectedBundle.h"
    3333#include "InjectedBundlePage.h"
     34#include "NotImplemented.h"
    3435#include <JavaScriptCore/JSStringRef.h>
    3536#include <atk/atk.h>
     
    11521153}
    11531154
     1155JSRetainPtr<JSStringRef> AccessibilityUIElement::pathDescription() const
     1156{
     1157    notImplemented();
     1158    return 0;
     1159}
     1160
    11541161} // namespace WTR
    11551162
Note: See TracChangeset for help on using the changeset viewer.