Index: chrome/renderer/autofill/form_autofill_util.cc |
diff --git a/chrome/renderer/autofill/form_autofill_util.cc b/chrome/renderer/autofill/form_autofill_util.cc |
index 4c25669156cff5978286efac322625c92216ade9..2a45ac7360902e07ee42173faaad8c399ea2eea3 100644 |
--- a/chrome/renderer/autofill/form_autofill_util.cc |
+++ b/chrome/renderer/autofill/form_autofill_util.cc |
@@ -611,6 +611,8 @@ void WebFormControlElementToFormField(const WebFormControlElement& element, |
if (IsTextInput(input_element)) { |
field->max_length = input_element->maxLength(); |
field->is_autofilled = input_element->isAutofilled(); |
+ field->is_focusable = input_element->isFocusable(); |
+ field->autocomplete = input_element->autoComplete(); |
} else if (extract_mask & EXTRACT_OPTIONS) { |
// Set option strings on the field if available. |
DCHECK(IsSelectElement(element)); |