Return no search engine if there's no form

Such as http://valadoc.org/#!wiki=index
This commit is contained in:
Paweł Forysiuk 2012-08-10 18:46:41 +02:00 committed by Christian Dywan
parent cb7e28b11f
commit 5c26087e62
1 changed files with 4 additions and 0 deletions

View File

@ -2471,6 +2471,10 @@ midori_view_search_engine_for_form (MidoriView* view,
active_element = webkit_dom_html_document_get_active_element ((WebKitDOMHTMLDocument*)doc);
active_form = webkit_dom_html_input_element_get_form ((WebKitDOMHTMLInputElement*)active_element);
if (!active_form)
return NULL;
token_element = webkit_dom_element_get_attribute (active_element, "name");
form_nodes = webkit_dom_html_form_element_get_elements (active_form);