We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 81efbb3 + 1612fab commit f920271Copy full SHA for f920271
core/java/android/webkit/WebViewClassic.java
@@ -6987,6 +6987,8 @@ private void overrideLoading(String url) {
6987
6988
@Override
6989
public boolean requestFocus(int direction, Rect previouslyFocusedRect) {
6990
+ // Check if we are destroyed
6991
+ if (mWebViewCore == null) return false;
6992
// FIXME: If a subwindow is showing find, and the user touches the
6993
// background window, it can steal focus.
6994
if (mFindIsUp) return false;
0 commit comments