| Index: third_party/WebKit/Source/web/WebViewImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| index 4af64b97e27f4af6cb73fe6aee091ad35d50060c..4aeae5e0aa07abf6626ee7154f7f81abe4f87221 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| @@ -2190,22 +2190,6 @@ WebInputEventResult WebViewImpl::handleInputEvent(const WebInputEvent& inputEven
|
| return WebInputEventResult::HandledSuppressed;
|
| }
|
|
|
| - if (inputEvent.modifiers & WebInputEvent::IsTouchAccessibility
|
| - && WebInputEvent::isMouseEventType(inputEvent.type)) {
|
| - PlatformMouseEventBuilder pme(mainFrameImpl()->frameView(), static_cast<const WebMouseEvent&>(inputEvent));
|
| -
|
| - // Find the right target frame. See issue 1186900.
|
| - HitTestResult result = hitTestResultForRootFramePos(pme.position());
|
| - if (result.innerNodeFrame()) {
|
| - Document* document = result.innerNodeFrame()->document();
|
| - if (document) {
|
| - AXObjectCache* cache = document->existingAXObjectCache();
|
| - if (cache)
|
| - cache->onTouchAccessibilityHover(result.roundedPointInInnerNodeFrame());
|
| - }
|
| - }
|
| - }
|
| -
|
| // Report the event to be NOT processed by WebKit, so that the browser can handle it appropriately.
|
| if (m_ignoreInputEvents)
|
| return WebInputEventResult::NotHandled;
|
|
|