Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit afeecb07 authored by John Reck's avatar John Reck Committed by Android (Google) Code Review
Browse files

Merge "Fix focus rings for buttons"

parents 494e155a ef109b0b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8523,7 +8523,7 @@ public final class WebViewClassic implements WebViewProvider, WebViewProvider.Sc
        if (mFocusedNode.mHasFocus && !mWebView.isInTouchMode()) {
            return !mFocusedNode.mEditable;
        }
        if (mInitialHitTestResult.getType() == HitTestResult.UNKNOWN_TYPE) {
        if (mFocusedNode.mHasFocus && mFocusedNode.mEditable) {
            return false;
        }
        long delay = System.currentTimeMillis() - mTouchHighlightRequested;