[Webkit-unassigned] [Bug 102857] Fix a problem that GestureTap event is not converted to mouse event on the top frame

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Nov 27 15:58:05 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=102857





--- Comment #5 from Sadrul Habib Chowdhury <sadrul at chromium.org>  2012-11-27 16:00:18 PST ---
(From update of attachment 175476)
View in context: https://bugs.webkit.org/attachment.cgi?id=175476&action=review

> Source/WebCore/page/EventHandler.cpp:2612
>          return handleGestureTap(gestureEvent);

Can you just check to see if this is in the mainFrame, instead of maintaining [mis-styled] gestureTapOriginatingFrame? i.e.

    return (m_frame->page() && m_frame->page()->mainFrame() != m_frame) ? handleGestureTap(gestureEvent) : false;

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list