diff options
-rw-r--r-- | webkit/glue/editor_client_impl.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/webkit/glue/editor_client_impl.cc b/webkit/glue/editor_client_impl.cc index 6355d5b..a3b245c 100644 --- a/webkit/glue/editor_client_impl.cc +++ b/webkit/glue/editor_client_impl.cc @@ -672,8 +672,7 @@ void EditorClientImpl::ShowAutofillForNode(WebCore::Node* node) { if (element->hasLocalName(WebCore::HTMLNames::inputTag)) { WebCore::HTMLInputElement* input_element = static_cast<WebCore::HTMLInputElement*>(element); - if (input_element->value().isEmpty()) - Autofill(input_element, true); + Autofill(input_element, true); } } } |