Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / components / autofill / core / browser / form_field.cc
index 2723676..b25ff2b 100644 (file)
@@ -186,6 +186,9 @@ bool FormField::MatchesFormControlType(const std::string& type,
   if ((match_type & MATCH_TEXT_AREA) && type == "textarea")
     return true;
 
+  if ((match_type & MATCH_PASSWORD) && type == "password")
+    return true;
+
   return false;
 }