/external/webkit/LayoutTests/fast/dom/HTMLFormElement/ |
document-deactivation-callback-crash-expected.txt | 1 Test for a crash when deactivating a document that had adopted a <form> element.
|
document-deactivation-callback-crash.html | 2 Test for a crash when deactivating a document that had adopted a <form> 21 var form = document.createElement("form"); 22 otherDocument.adoptNode(form); 23 form = null;
|
adopt-assertion.html | 4 (willMoveToNewOwnerDocumentWasCalled) when adopting a <form> element</i>. 9 <form id="target"></form>
|
/external/webkit/LayoutTests/fast/encoding/resources/ |
char-encoding-utils.js | 9 var form = document.getElementById('form'); 12 form.parentNode.removeChild(form); 52 var form = document.getElementById('form'); 56 form.acceptCharset = charsets[i]; 57 form.action = "resources/dummy.html"; 61 form.submit();
|
/external/chromium/chrome/browser/webdata/ |
logins_table.cc | 19 void InitPasswordFormFromStatement(PasswordForm* form, sql::Statement* s) { 23 form->origin = GURL(tmp); 25 form->action = GURL(tmp); 26 form->username_element = s->ColumnString16(2); 27 form->username_value = s->ColumnString16(3); 28 form->password_element = s->ColumnString16(4); 38 form->password_value = decrypted_password; 39 form->submit_element = s->ColumnString16(6); 41 form->signon_realm = tmp; 42 form->ssl_valid = (s->ColumnInt(8) > 0) [all...] |
/external/chromium/chrome/browser/password_manager/ |
password_manager_unittest.cc | 105 PasswordForm form; local 106 form.origin = GURL("http://www.google.com/a/LoginAuth"); 107 form.action = GURL("http://www.google.com/a/Login"); 108 form.username_element = ASCIIToUTF16("Email"); 109 form.password_element = ASCIIToUTF16("Passwd"); 110 form.username_value = ASCIIToUTF16("google"); 111 form.password_value = ASCIIToUTF16("password"); 112 form.submit_element = ASCIIToUTF16("signIn"); 113 form.signon_realm = "http://www.google.com"; 114 return form; [all...] |
password_form_data.cc | 13 PasswordForm* form = new PasswordForm(); local 14 form->scheme = form_data.scheme; 15 form->preferred = form_data.preferred; 16 form->ssl_valid = form_data.ssl_valid; 17 form->date_created = base::Time::FromDoubleT(form_data.creation_time); 19 form->signon_realm = std::string(form_data.signon_realm); 21 form->origin = GURL(form_data.origin); 23 form->action = GURL(form_data.action); 25 form->submit_element = WideToUTF16(form_data.submit_element); 27 form->username_element = WideToUTF16(form_data.username_element) [all...] |
/external/chromium/chrome/browser/autofill/ |
form_structure_unittest.cc | 20 std::ostream& operator<<(std::ostream& os, const FormData& form) { 21 os << UTF16ToUTF8(form.name) 23 << UTF16ToUTF8(form.method) 25 << form.origin.spec() 27 << form.action.spec() 31 form.fields.begin(); 32 iter != form.fields.end(); ++iter) { 52 FormData form; local 53 form.method = ASCIIToUTF16("post"); 54 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("username") 79 FormData form; local 113 FormData form; local 123 FormData form; local 201 FormData form; local 289 FormData form; local 394 FormData form; local 475 FormData form; local 561 FormData form; local 623 FormData form; local 695 FormData form; local 746 FormData form; local 801 FormData form; local 853 FormData form; local 893 FormData form; local 934 FormData form; local 1037 FormData form; local 1090 FormData form; local 1145 FormData form; local 1207 FormData form; local 1329 FormData form; local 1482 FormData form; local 1561 FormData form; local 1683 FormData form; local [all...] |
autofill_manager_unittest.cc | 147 // Populates |form| with data corresponding to a simple address form. 148 // Note that this actually appends fields to the form data, which can be useful 150 void CreateTestAddressFormData(FormData* form) { 151 form->name = ASCIIToUTF16("MyForm"); 152 form->method = ASCIIToUTF16("POST"); 153 form->origin = GURL("http://myform.com/form.html"); 154 form->action = GURL("http://myform.com/submit.html"); 155 form->user_submitted = true 605 FormData form; local 647 FormData form; local 682 FormData form; local 711 FormData form; local 757 FormData form; local 774 FormData form; local 841 FormData form; local 884 FormData form; local 920 FormData form; local 963 FormData form; local 1037 FormData form; local 1086 FormData form; local 1160 FormData form; local 1228 FormData form; local 1277 FormData form; local 1315 FormData form; local 1358 FormData form; local 1401 FormData form; local 1448 FormData form; local 1498 FormData form; local 1518 FormData form; local 1542 FormData form; local 1568 FormData form; local 1593 FormData form; local 1619 FormData form; local 1640 FormData form; local 1679 FormData form; local 1751 FormData form; local 1782 FormData form; local 1847 FormData form; local 1918 FormData form; local 1950 FormData form; local 1979 FormData form; local 2005 FormData form; local [all...] |
autofill_metrics_unittest.cc | 142 void AddSeenForm(FormStructure* form) { 143 form_structures()->push_back(form); 154 explicit TestFormStructure(const FormData& form) : FormStructure(form) {} 213 // Set up our form data. 214 FormData form; local 215 form.name = ASCIIToUTF16("TestForm"); 216 form.method = ASCIIToUTF16("POST"); 217 form.origin = GURL("http://example.com/form.html") 344 FormData form; local 456 FormData form; local 592 FormData form; local 628 FormData form; local 766 FormData form; local [all...] |
/external/webkit/Source/WebCore/manual-tests/ |
onunload-form-submit-crash.html | 5 <form name="myForm"> 6 </form>
|
modal-dialog.html | 9 window.returnValue = document.form.toWindow.value; 15 document.form.fromWindow.value = window.dialogArguments; 20 <form name="form"> 26 </form>
|
textarea-reset-default-value.html | 7 we restore form state (e.g. by hitting back after submitting a form). --> 15 <li>Submit the form. The form should navigate back immediately.</li> 16 <li>Note that the value in the text area matches what you entered before submitting the form, this is correct.</li> 17 <li>Now click the reset button for the form. 21 <iframe src="resources/textarea-form-back-on-submit.html" width="800" height="200" id="frame"></iframe>
|
timeout-test.html | 8 Clicking on this button will post a form that takes over 10 minutes for the server to respond. The connection should not time out!<br> 9 <form action="timeout-test.php" method="post"> 11 </form>
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/mime-types/ |
dillo | 3 application/x-www-form-urlencoded 11 multipart/form-data
|
/external/qemu/elff/ |
dwarf_utils.h | 31 /* Gets DWARF form name string (DW_FORM_Xxx) for a given form.
33 * form - DWARF form to get name string for.
35 * Form name string. Note that this routine returns "DW_FORM_Unknown", if
36 * DWARF form value passed to this routine has not been recognized.
38 const char* dwarf_form_name(Dwarf_Form form);
52 * form - Attribute form (DW_FORM_Xxx)
55 void dump_attrib(Dwarf_At at, Dwarf_Form form, const Dwarf_Value* val); [all...] |
/ndk/sources/host-tools/ndk-stack/elff/ |
dwarf_utils.h | 31 /* Gets DWARF form name string (DW_FORM_Xxx) for a given form. 33 * form - DWARF form to get name string for. 35 * Form name string. Note that this routine returns "DW_FORM_Unknown", if 36 * DWARF form value passed to this routine has not been recognized. 38 const char* dwarf_form_name(Dwarf_Form form); 52 * form - Attribute form (DW_FORM_Xxx) 55 void dump_attrib(Dwarf_At at, Dwarf_Form form, const Dwarf_Value* val) [all...] |
/external/webkit/Source/WebCore/platform/network/mac/ |
FormDataStreamMac.mm | 10 * 2. Redistributions in binary form must reproduce the above copyright 145 static void closeCurrentStream(FormStreamFields *form) 147 if (form->currentStream) { 148 CFReadStreamClose(form->currentStream); 149 CFReadStreamSetClient(form->currentStream, kCFStreamEventNone, NULL, NULL); 150 CFRelease(form->currentStream); 151 form->currentStream = NULL; 153 form->currentStreamRangeLength = BlobDataItem::toEndOfFile; 156 if (form->currentData) { 157 fastFree(form->currentData) [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ |
AttributeCertificateIssuer.java | 20 final ASN1Encodable form; field in class:AttributeCertificateIssuer 29 form = issuer.getIssuer(); 34 form = new V2Form(new GeneralNames(new GeneralName(principal))); 41 if (form instanceof V2Form) 43 name = ((V2Form)form).getIssuerName(); 47 name = (GeneralNames)form; 87 return new AttributeCertificateIssuer(AttCertIssuer.getInstance(form)); 104 return this.form.equals(other.form); 109 return this.form.hashCode() [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-216320.js | 171 function vsub(form,status,ism,action){ 174 band=form.BAND.options[form.BAND.selectedIndex].value; 177 form.BAND.focus(); 183 if(!vnull(form.PT)) { return false; } 184 adt1=form.STD; 185 adt2=form.END; 203 if(!vnull(form.STD)){ return false; } 204 if(!vnull(form.END)){ return false; } 207 form.STD.focus() [all...] |
/external/chromium/webkit/glue/ |
form_data.h | 19 // Holds information about a form to be filled and/or submitted. 25 // The name of the form. 29 // The URL (minus query parameters) containing the form. 31 // The action target of the form. 33 // true if this form was submitted by a user gesture and not javascript. 35 // A vector of all the input fields in the form. 43 bool operator==(const FormData& form) const;
|
password_form_dom_manager.h | 20 // basic_data identifies the HTML form on the page and preferred username/ 22 // additional_logins is a list of other matching user/pass pairs for the form. 26 // associated with this form. This can happen, for example, if action URI's 27 // of the observed form and our saved representation don't match up. 40 // Create a PasswordForm from DOM form. Webkit doesn't allow storing 42 // happens with a given form and compare against previously Create'd forms 44 static PasswordForm* CreatePasswordForm(const WebKit::WebFormElement& form); 46 // Create a FillData structure in preparation for autofilling a form, 47 // from basic_data identifying which form to fill, and a collection of
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
cyrillic-uri.manifest | 4 cyrillic-uri-form.html 5 cyrillic-uri-form.html?i=???????? 8 cyrillic-uri-form.html?i=????????-2
|
/external/webkit/Source/WebCore/html/ |
IsIndexInputType.cpp | 10 * * Redistributions in binary form must reproduce the above 58 RefPtr<HTMLFormElement> form = InputType::formForSubmission(); local 59 if (form) 60 return form.release(); 61 // If there is no form, then create a temporary form just to be used for submission. 63 form = HTMLFormElement::create(document); 64 form->registerFormElement(element()); 65 form->setMethod("GET"); 67 // We treat the href property of the <base> element as the form action, as per section 7. [all...] |
/external/webkit/Tools/QueueStatusServer/templates/ |
updatestatus.html | 0 <form name="update_status" enctype="multipart/form-data" method="post"> 21 </form>
|