From f9e00946d51a745f392ba88bf879e77bb157e663 Mon Sep 17 00:00:00 2001 From: Gustavo Noronha Silva Date: Mon, 9 Apr 2012 00:10:51 -0300 Subject: Also consider email inputs when looking for user/password forms Some sites use email addresses for login purposes, and already adopted the email input type for the login forms. This means we should also consider email inputs as a possible username entry. https://bugzilla.gnome.org/show_bug.cgi?id=666326 --- embed/ephy-web-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'embed') diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index a6f30161c..038f8cec5 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -635,7 +635,7 @@ find_username_and_password_elements (WebKitDOMNode *form_node, g_object_get (element, "type", &element_type, NULL); - if (g_str_equal ("text", element_type)) { + if (g_str_equal ("text", element_type) || g_str_equal ("email", element_type)) { /* We found more than one inputs of type text; we won't be * saving here */ if (*username_node) { -- cgit v1.2.3