| Index: Source/modules/accessibility/AXObjectCacheImpl.cpp | 
| diff --git a/Source/modules/accessibility/AXObjectCacheImpl.cpp b/Source/modules/accessibility/AXObjectCacheImpl.cpp | 
| index 5abafb35ee99d89ab4dc117674a814523716031f..23ce8348a057f78ee79e3deb055397c3f0e5f7ae 100644 | 
| --- a/Source/modules/accessibility/AXObjectCacheImpl.cpp | 
| +++ b/Source/modules/accessibility/AXObjectCacheImpl.cpp | 
| @@ -99,8 +99,8 @@ AXObjectCacheImpl::~AXObjectCacheImpl() | 
| { | 
| m_notificationPostTimer.stop(); | 
|  | 
| -    HashMap<AXID, RefPtr<AXObject> >::iterator end = m_objects.end(); | 
| -    for (HashMap<AXID, RefPtr<AXObject> >::iterator it = m_objects.begin(); it != end; ++it) { | 
| +    HashMap<AXID, RefPtr<AXObject>>::iterator end = m_objects.end(); | 
| +    for (HashMap<AXID, RefPtr<AXObject>>::iterator it = m_objects.begin(); it != end; ++it) { | 
| AXObject* obj = (*it).value.get(); | 
| obj->detach(); | 
| removeAXID(obj); | 
|  |