Changeset 56749 in webkit


Ignore:
Timestamp:
Mar 29, 2010 4:38:40 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-29 Chris Fleizach <Chris Fleizach>

Reviewed by Beth Dakin.

Bug 36735 - Live regions don't send out notifications when the element changing is the live region
https://bugs.webkit.org/show_bug.cgi?id=36735

  • platform/mac/accessibility/aria-liveregion-on-image-expected.txt: Added.
  • platform/mac/accessibility/aria-liveregion-on-image.html: Added.

2010-03-29 Chris Fleizach <Chris Fleizach>

Reviewed by Beth Dakin.

Bug 36735 - Live regions don't send out notifications when the element changing is the live region
https://bugs.webkit.org/show_bug.cgi?id=36735

Test: platform/mac/accessibility/aria-liveregion-on-image.html

  • accessibility/AccessibilityRenderObject.cpp: (WebCore::AccessibilityRenderObject::contentChanged):
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r56744 r56749  
     12010-03-29  Chris Fleizach  <cfleizach@apple.com>
     2
     3        Reviewed by Beth Dakin.
     4
     5        Bug 36735 - Live regions don't send out notifications when the element changing is the live region
     6        https://bugs.webkit.org/show_bug.cgi?id=36735
     7
     8        * platform/mac/accessibility/aria-liveregion-on-image-expected.txt: Added.
     9        * platform/mac/accessibility/aria-liveregion-on-image.html: Added.
     10
    1112010-03-29  Stephen White  <senorblanco@chromium.org>
    212
  • trunk/WebCore/ChangeLog

    r56744 r56749  
     12010-03-29  Chris Fleizach  <cfleizach@apple.com>
     2
     3        Reviewed by Beth Dakin.
     4
     5        Bug 36735 - Live regions don't send out notifications when the element changing is the live region
     6        https://bugs.webkit.org/show_bug.cgi?id=36735
     7
     8        Test: platform/mac/accessibility/aria-liveregion-on-image.html
     9
     10        * accessibility/AccessibilityRenderObject.cpp:
     11        (WebCore::AccessibilityRenderObject::contentChanged):
     12
    1132010-03-29  Stephen White  <senorblanco@chromium.org>
    214
  • trunk/WebCore/accessibility/AccessibilityRenderObject.cpp

    r56530 r56749  
    28582858{
    28592859    // If this element supports ARIA live regions, then notify the AT of changes.
    2860     for (RenderObject* renderParent = m_renderer->parent(); renderParent; renderParent = renderParent->parent()) {
    2861         AccessibilityObject* parent = m_renderer->document()->axObjectCache()->get(renderParent);
     2860    AXObjectCache* cache = m_renderer->document()->axObjectCache();
     2861    for (RenderObject* renderParent = m_renderer; renderParent; renderParent = renderParent->parent()) {
     2862        AccessibilityObject* parent = cache->get(renderParent);
    28622863        if (!parent)
    28632864            continue;
Note: See TracChangeset for help on using the changeset viewer.