will_submit_form
Description:
public signal void will_submit_form (Element form, FormSubmissionStep step, Frame source_frame, Frame target_frame, GenericArray<string> text_field_names, GenericArray<string> text_field_values)
Warning: will_submit_form is deprecated since 2.40.
This signal is emitted to indicate various points during form submission.
Use will_send_submit_event and will_submit_form instead.
step
indicates the current stage of form submission.
If this signal is emitted with webkit_form_submission_will_send_dom_event, then the DOM submit event is about to be emitted. JavaScript code may rely on the submit event to detect that the user has clicked on a submit button, and to possibly cancel the form submission before webkit_form_submission_will_complete. However, beware that, for historical reasons, the submit event is not emitted at all if the form submission is triggered by JavaScript. For these reasons, webkit_form_submission_will_send_dom_event may not be used to reliably detect whether a form will be submitted. Instead, use it to detect if a user has clicked on a form's submit button even if JavaScript later cancels the form submission, or to read the values of the form's fields even if JavaScript later clears certain fields before submitting. This may be needed, for example, to implement a robust browser password manager, as some misguided websites may use such techniques to attempt to thwart password managers.
If this signal is emitted with webkit_form_submission_will_complete, the form will imminently be submitted. It can no longer be cancelled. This event always occurs immediately before a form is submitted to its target, so use this event to reliably detect when a form is submitted. This event occurs after webkit_form_submission_will_send_dom_event if that event is emitted.
Parameters:
form |
the Element to be submitted, which will always correspond to an HTMLFormElement |
step |
a |
source_frame |
the Frame containing the form to be submitted |
target_frame |
the Frame containing the form's target, which may be the same
as |
text_field_names |
names of the form's text fields |
text_field_values |
values of the form's text fields |