Home | History | Annotate | Download | only in browser

Lines Matching defs:form

53   FormData form;
54 form.name = ASCIIToUTF16("MyForm");
55 form.method = ASCIIToUTF16("POST");
56 form.origin = GURL("http://myform.com/form.html");
57 form.action = GURL("http://myform.com/submit.html");
58 form.user_submitted = true;
67 form.fields.push_back(valid_cc);
70 autocomplete_manager_->OnFormSubmitted(form);
77 FormData form;
78 form.name = ASCIIToUTF16("MyForm");
79 form.method = ASCIIToUTF16("POST");
80 form.origin = GURL("http://myform.com/form.html");
81 form.action = GURL("http://myform.com/submit.html");
82 form.user_submitted = true;
91 form.fields.push_back(invalid_cc);
94 autocomplete_manager_->OnFormSubmitted(form);
99 FormData form;
100 form.name = ASCIIToUTF16("MyForm");
101 form.method = ASCIIToUTF16("POST");
102 form.origin = GURL("http://myform.com/form.html");
103 form.action = GURL("http://myform.com/submit.html");
104 form.user_submitted = true;
112 form.fields.push_back(ssn);
115 autocomplete_manager_->OnFormSubmitted(form);