We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af18865 commit 1612fabCopy full SHA for 1612fab
core/java/android/webkit/WebViewClassic.java
@@ -6981,6 +6981,8 @@ private void overrideLoading(String url) {
6981
6982
@Override
6983
public boolean requestFocus(int direction, Rect previouslyFocusedRect) {
6984
+ // Check if we are destroyed
6985
+ if (mWebViewCore == null) return false;
6986
// FIXME: If a subwindow is showing find, and the user touches the
6987
// background window, it can steal focus.
6988
if (mFindIsUp) return false;
0 commit comments