Double tap for child frame widgets won't work |
||
Issue description
Looks like RenderWidgetHostViewAura::RequiresDoubleTapGestureEvents() would return the wrong thing (always false) for any child local root, it only does the right thing when there is an owner delegate on the RenderWidgetHost, which implies the RenderWidget is for the main frame.
bool RenderWidgetHostViewAura::RequiresDoubleTapGestureEvents() const {
RenderViewHost* rvh = RenderViewHost::From(host());
return rvh && rvh->GetWebkitPreferences().double_tap_to_zoom_enabled;
}
(From 822455)
,
Dec 20
afakhry@ - You mentioned double-tap to zoom has been turned off since M-70. Is there a CL for that?
,
Dec 20
Yes, https://chromium-review.googlesource.com/c/chromium/src/+/1311693 |
||
►
Sign in to add a comment |
||
Comment 1 by danakj@chromium.org
, Dec 19