Changeset 50250 in webkit


Ignore:
Timestamp:
Oct 28, 2009 5:12:42 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-10-28 Joanmarie Diggs <joanmarie.diggs@gmail.com>

Reviewed by Xan Lopez.

https://bugs.webkit.org/show_bug.cgi?id=30817
Use parentObjectUnignored instead of parentObject in webkit_accessible_get_parent

Also removes the hack I had originally added to solve bug 25411, because
the fix here is what I should have done in the first place.

  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (webkit_accessible_get_parent):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r50247 r50250  
     12009-10-28  Joanmarie Diggs  <joanmarie.diggs@gmail.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=30817
     6        Use parentObjectUnignored instead of parentObject in webkit_accessible_get_parent
     7
     8        Also removes the hack I had originally added to solve bug 25411, because
     9        the fix here is what I should have done in the first place.
     10
     11        * accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:
     12        (webkit_accessible_get_parent):
     13
    1142009-10-28  Dmitry Titov  <dimich@chromium.org>
    215
  • trunk/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp

    r50219 r50250  
    186186static AtkObject* webkit_accessible_get_parent(AtkObject* object)
    187187{
    188     // To work around bogus additional objects in the ancestry, we set the
    189     // parent when we ref the child. If the child knows its parent, use that.
    190     AtkObject* parent = ATK_OBJECT_CLASS(webkit_accessible_parent_class)->get_parent(object);
    191     if (parent)
    192         return parent;
    193 
    194     AccessibilityObject* coreParent = core(object)->parentObject();
     188    AccessibilityObject* coreParent = core(object)->parentObjectUnignored();
    195189
    196190    // The top level web view claims to not have a parent. This makes it
Note: See TracChangeset for help on using the changeset viewer.