Changeset 85414 in webkit


Ignore:
Timestamp:
May 1, 2011 9:07:19 AM (13 years ago)
Author:
Chris Fleizach
Message:

2011-05-01 Chris Fleizach <Chris Fleizach>

Reviewed by Maciej Stachowiak.

Crash in AccessibilityRenderObject while viewing PDFs in iframes
https://bugs.webkit.org/show_bug.cgi?id=59629

Could not reproduce this crash, but it's quite clear how it could happen.

  • accessibility/AccessibilityRenderObject.cpp: (WebCore::AccessibilityRenderObject::accessibilityHitTest):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r85413 r85414  
     12011-05-01  Chris Fleizach  <cfleizach@apple.com>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        Crash in AccessibilityRenderObject while viewing PDFs in iframes
     6        https://bugs.webkit.org/show_bug.cgi?id=59629
     7
     8        Could not reproduce this crash, but it's quite clear how it could happen.
     9 
     10        * accessibility/AccessibilityRenderObject.cpp:
     11        (WebCore::AccessibilityRenderObject::accessibilityHitTest):
     12
    1132011-05-01  Nikolas Zimmermann  <nzimmermann@rim.com>
    214
  • trunk/Source/WebCore/accessibility/AccessibilityRenderObject.cpp

    r84600 r85414  
    27842784    result = result->elementAccessibilityHitTest(point);
    27852785   
    2786     if (result->accessibilityIsIgnored()) {
     2786    if (result && result->accessibilityIsIgnored()) {
    27872787        // If this element is the label of a control, a hit test should return the control.
    27882788        AccessibilityObject* controlObject = result->correspondingControlForLabelElement();
Note: See TracChangeset for help on using the changeset viewer.