Clear the password field when reloading the current page.

Fixes http://b/issue?id=2119142

Change-Id: I14bfcc6873f295c4d24ef7ee10450fd444dbe82c
This commit is contained in:
Leon Scroggins
2009-09-14 18:56:48 -04:00
parent b06aac86d1
commit 74077c8f2e

View File

@@ -1394,6 +1394,7 @@ public class WebView extends AbsoluteLayout
* Reload the current url. * Reload the current url.
*/ */
public void reload() { public void reload() {
clearTextEntry();
switchOutDrawHistory(); switchOutDrawHistory();
mWebViewCore.sendMessage(EventHub.RELOAD); mWebViewCore.sendMessage(EventHub.RELOAD);
} }