Lines Matching full:form
146 // Need to remove this from the form while it is still an HTMLInputElement,
161 // Assuming we're still in a Form, respect the Form's setting
162 if (HTMLFormElement* form = this->form())
163 return form->autoComplete();
686 if (HTMLFormElement* form = element->form())
687 return form->checkedRadioButtons();
709 if (focusedInput->inputType() == RADIO && focusedInput->form() == form() &&
1090 // We only need to setChanged if the form is looking at the default value right now.
1284 // image generates its own names, but for other types there is no form data unless there's a name
1998 if (input->form() == form() && input->inputType() == RADIO && input->name() == name()) {
1999 // Ok, the old radio button is still in our form and in our group and is still a
2068 // actually submitting the form. For reset inputs, the form is reset. These events are sent when the user clicks
2073 if (!form())
2076 form()->reset();
2083 if (!form()->prepareSubmit(evt)) {
2120 // Simulate mouse click on the default form button for enter for these types of elements.
2187 // We can only stay within the form's children if the form hasn't been demoted to a leaf because
2191 // Once we encounter a form element, we know we're through.
2198 if (elt->form() != form())
2282 RefPtr<HTMLFormElement> formForSubmission = form();
2283 // If there is no form and the element is an <isindex>, then create a temporary form just to be used for submission.
2287 // Form may never have been present, or may have been destroyed by code responding to the change event.
2310 RefPtr<HTMLFormElement> form = new HTMLFormElement(formTag, document());
2311 form->registerFormElement(this);
2312 form->setMethod("GET");
2314 // We treat the href property of the <base> element as the form action, as per section 7.5
2316 form->setAction(document()->baseURL().string());
2318 return form.release();