Changeset 169485 in webkit


Ignore:
Timestamp:
May 30, 2014 8:20:26 AM (10 years ago)
Author:
mario.prada@samsung.com
Message:

[ATK] Deprecate usage of logAccessibilityEvents() in layout tests
https://bugs.webkit.org/show_bug.cgi?id=132280

Rubber stamped by Carlos Garcia Campos.

Fix two small issues with previous patch (r169483), that caused some tests to break.

  • WebKitTestRunner/InjectedBundle/atk/AccessibilityNotificationHandlerAtk.cpp:

(WTR::AccessibilityNotificationHandler::connectAccessibilityCallbacks): Removed
duplicated entry.

  • WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:

(WTR::AccessibilityUIElement::setSelectedTextRange): Fix boolean condition.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r169483 r169485  
     12014-05-30  Mario Sanchez Prada  <mario.prada@samsung.com>
     2
     3        [ATK] Deprecate usage of logAccessibilityEvents() in layout tests
     4        https://bugs.webkit.org/show_bug.cgi?id=132280
     5
     6        Rubber stamped by Carlos Garcia Campos.
     7
     8        Fix two small issues with previous patch (r169483), that caused some tests to break.
     9
     10        * WebKitTestRunner/InjectedBundle/atk/AccessibilityNotificationHandlerAtk.cpp:
     11        (WTR::AccessibilityNotificationHandler::connectAccessibilityCallbacks): Removed
     12        duplicated entry.
     13        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
     14        (WTR::AccessibilityUIElement::setSelectedTextRange): Fix boolean condition.
     15
    1162014-05-30  Jarek Czekalski  <jarekczek@poczta.onet.pl>
    217
  • trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityNotificationHandlerAtk.cpp

    r169483 r169485  
    252252    const char* signalNames[] = {
    253253        "ATK:AtkObject:state-change",
    254         "ATK:AtkObject:state-change",
    255254        "ATK:AtkObject:focus-event",
    256255        "ATK:AtkObject:active-descendant-changed",
  • trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp

    r169483 r169485  
    15861586        return false;
    15871587
    1588     if (length)
     1588    if (!length)
    15891589        return atk_text_set_caret_offset(ATK_TEXT(m_element.get()), location);
    15901590
Note: See TracChangeset for help on using the changeset viewer.