| Index: webkit/glue/searchable_form_data.cc
|
| ===================================================================
|
| --- webkit/glue/searchable_form_data.cc (revision 13436)
|
| +++ webkit/glue/searchable_form_data.cc (working copy)
|
| @@ -320,10 +320,8 @@
|
| if (frame == NULL)
|
| return NULL;
|
|
|
| - // 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))
|
| + // Only consider forms that GET data and the action targets an http page.
|
| + if (!IsFormMethodGet(form) || !IsHTTPFormSubmit(form))
|
| return NULL;
|
|
|
| Vector<char> enc_string;
|
|
|