Changeset 35289 in webkit


Ignore:
Timestamp:
Jul 22, 2008 2:45:53 PM (16 years ago)
Author:
Chris Fleizach
Message:

<rdar://problem/6004877> internal anchors on this page are not showing up in the AXLinkedUIElements

Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r35286 r35289  
     12008-07-22  Chris Fleizach  <cfleizach@apple.com>
     2
     3        Reviewed by Dave Hyatt
     4
     5        <rdar://problem/6004877> internal anchors on this page are not showing up in the AXLinkedUIElements
     6       
     7        * accessibility/internal-link-anchors2-expected.txt: Added.
     8        * accessibility/internal-link-anchors2.html: Added.
     9
    1102008-07-22  Alexey Proskuryakov  <ap@webkit.org>
    211
  • trunk/WebCore/ChangeLog

    r35288 r35289  
     12008-07-22  Chris Fleizach  <cfleizach@apple.com>
     2
     3        Reviewed by Dave Hyatt.
     4
     5        <rdar://problem/6004877> internal anchors on this page are not showing up in the AXLinkedUIElements
     6        Test: accessibility/internal-link-anchors2.html
     7
     8        * page/AccessibilityRenderObject.cpp:
     9        (WebCore::AccessibilityRenderObject::internalLinkElement):
     10
    1112008-07-22  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/WebCore/page/AccessibilityRenderObject.cpp

    r35174 r35289  
    973973    while (linkedAXElement && linkedAXElement->accessibilityIsIgnored()) {
    974974        linkedNode = linkedNode->traverseNextNode();
     975       
     976        while (linkedNode && !linkedNode->renderer())
     977            linkedNode = linkedNode->traverseNextSibling();
     978       
    975979        if (!linkedNode)
    976980            return 0;
Note: See TracChangeset for help on using the changeset viewer.