diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-09 19:48:55 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-09 19:48:55 +0000 |
commit | 120f05fa80e35a372331dfe901e65c74383d3d30 (patch) | |
tree | 6db2020ab2f6f41805524b3aa693d04c146f4057 /webkit/glue/searchable_form_data.cc | |
parent | 45904e20797f8cd28a776ed0e40ba94dc4eef97e (diff) | |
download | chromium_src-120f05fa80e35a372331dfe901e65c74383d3d30.zip chromium_src-120f05fa80e35a372331dfe901e65c74383d3d30.tar.gz chromium_src-120f05fa80e35a372331dfe901e65c74383d3d30.tar.bz2 |
revert until I can figure out why the tests are hanging
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13448 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/searchable_form_data.cc')
-rw-r--r-- | webkit/glue/searchable_form_data.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/glue/searchable_form_data.cc b/webkit/glue/searchable_form_data.cc index 6187897..3c787b2 100644 --- a/webkit/glue/searchable_form_data.cc +++ b/webkit/glue/searchable_form_data.cc @@ -320,8 +320,10 @@ SearchableFormData* SearchableFormData::Create(WebCore::HTMLFormElement* form) { if (frame == NULL) return NULL; - // Only consider forms that GET data and the action targets an http page. - if (!IsFormMethodGet(form) || !IsHTTPFormSubmit(form)) + // Only consider forms that GET data, do not have script for onsubmit, and + // the action targets an http page. + if (!IsFormMethodGet(form) || FormHasOnSubmit(form) || + !IsHTTPFormSubmit(form)) return NULL; Vector<char> enc_string; |