Changeset 176484 in webkit
- Timestamp:
- Nov 21, 2014, 4:11:51 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
accessibility/AccessibilityRenderObject.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r176482 r176484 1 2014-11-21 Chris Fleizach <cfleizach@apple.com> 2 3 AX: com.apple.WebKit.WebContent crashed at WebCore: WebCore::AccessibilityRenderObject::computeAccessibilityIsIgnored const 4 https://bugs.webkit.org/show_bug.cgi?id=138905 5 6 Reviewed by Mario Sanchez Prada. 7 8 The crash log indicates that m_renderer is null at the time we ask ancestorsOfType(). 9 This is more of a speculative fix, since I am not entirely sure m_renderer is null when we enter the method. 10 11 Unable to determine cause of crash or how to reproduce on demand. 12 13 * accessibility/AccessibilityRenderObject.cpp: 14 (WebCore::AccessibilityRenderObject::computeAccessibilityIsIgnored): 15 1 16 2014-11-21 Jer Noble <jer.noble@apple.com> 2 17 -
trunk/Source/WebCore/accessibility/AccessibilityRenderObject.cpp
r176447 r176484 1165 1165 #endif 1166 1166 1167 if (!m_renderer) 1168 return true; 1169 1167 1170 // Check first if any of the common reasons cause this element to be ignored. 1168 1171 // Then process other use cases that need to be applied to all the various roles … … 1193 1196 1194 1197 // ignore popup menu items because AppKit does 1195 if ( ancestorsOfType<RenderMenuList>(*m_renderer).first())1198 if (m_renderer && ancestorsOfType<RenderMenuList>(*m_renderer).first()) 1196 1199 return true; 1197 1200
Note:
See TracChangeset
for help on using the changeset viewer.