diff options
author | dhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-11 04:18:19 +0000 |
---|---|---|
committer | dhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-11 04:18:19 +0000 |
commit | aa1182d062df9f2c1e0e549b7e15c3f58b574768 (patch) | |
tree | a61a032c63bf69cc6ad88094b6383087a7a532b2 /webkit | |
parent | ee1adf4b505e1c93d7141d976070aec601e25f21 (diff) | |
download | chromium_src-aa1182d062df9f2c1e0e549b7e15c3f58b574768.zip chromium_src-aa1182d062df9f2c1e0e549b7e15c3f58b574768.tar.gz chromium_src-aa1182d062df9f2c1e0e549b7e15c3f58b574768.tar.bz2 |
Autofill - "Clear form" failed to clear the select popup values
Enhances Autofill "Clear form" functionality to reset select-one input elements to their original values. The initial values are captured during form load and saved in the FormManager cache.
BUG=50412
TEST=FormManagerTest.ClearFormWithNodeContainingSelectOne
Review URL: http://codereview.chromium.org/3707001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62133 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/form_field.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/form_field.h b/webkit/glue/form_field.h index fe7aa69..1ed8d68 100644 --- a/webkit/glue/form_field.h +++ b/webkit/glue/form_field.h @@ -67,7 +67,7 @@ class FormField { }; // So we can compare FormFields with EXPECT_EQ(). -std::ostream& operator<<(std::ostream& os, const FormField& profile); +std::ostream& operator<<(std::ostream& os, const FormField& field); } // namespace webkit_glue |