Index: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp |
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp |
index ff87ae10000912a5afeaad8afb9333527002bdc0..4aafb8ce1120d5f280f2c6befcd5e7f14b50dcda 100644 |
--- a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp |
+++ b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp |
@@ -1333,6 +1333,13 @@ String AXObjectCacheImpl::computedNameForNode(Node* node) |
return String(); |
} |
+void AXObjectCacheImpl::onTouchAccessibilityHover(const IntPoint& location) |
+{ |
+ AXObject* hit = root()->accessibilityHitTest(location); |
+ if (hit) |
+ postPlatformNotification(hit, AXHover); |
+} |
+ |
void AXObjectCacheImpl::setCanvasObjectBounds(Element* element, const LayoutRect& rect) |
{ |
AXObject* obj = getOrCreate(element); |