commit | c34dec82a9409b39ba7fd6d28dbceff217cf79df | [log] [tgz] |
---|---|---|
author | TreeHugger Robot <treehugger-gerrit@google.com> | Fri Jun 23 22:33:10 2017 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Fri Jun 23 22:33:16 2017 +0000 |
tree | 146c8bdccaae64d4305425f9420636b110977fcb | |
parent | 9b734011910cdddb6455bd35bab1f099ecfab417 [diff] | |
parent | 97640400c4aa6bf05d5606ea749b54ad63de97cd [diff] |
Merge "Fix for the missing focus in WebView form fields." into oc-dev
diff --git a/packages/CaptivePortalLogin/src/com/android/captiveportallogin/CaptivePortalLoginActivity.java b/packages/CaptivePortalLogin/src/com/android/captiveportallogin/CaptivePortalLoginActivity.java index 582b660..849f6a9 100644 --- a/packages/CaptivePortalLogin/src/com/android/captiveportallogin/CaptivePortalLoginActivity.java +++ b/packages/CaptivePortalLogin/src/com/android/captiveportallogin/CaptivePortalLoginActivity.java
@@ -360,6 +360,9 @@ return; } else if (mPagesLoaded == 2) { // Prevent going back to empty first page. + // Fix for missing focus, see b/62449959 for details. Remove it once we get a + // newer version of WebView (60.x.y). + view.requestFocus(); view.clearHistory(); } testForCaptivePortal();