Searched refs:actionURL (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DFormSubmission.cpp199 KURL actionURL = document.completeURL(copiedAttributes.action().isEmpty() ? document.url().string() : copiedAttributes.action()); local
200 bool isMailtoForm = actionURL.protocolIs("mailto");
238 appendMailtoPostFormDataToURL(actionURL, *formData, encodingType);
246 return adoptRefWillBeNoop(new FormSubmission(copiedAttributes.method(), actionURL, targetOrBaseTarget, encodingType, FormState::create(*form, trigger), formData.release(), boundary, event));
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DFormController.cpp339 KURL actionURL = form.getURLAttribute(actionAttr); local
342 if (!actionURL.isEmpty())
343 actionURL.setQuery(String());
346 if (!actionURL.isEmpty())
347 builder.append(actionURL.string());
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormElement.cpp524 KURL actionURL = document().completeURL(m_attributes.action().isEmpty() ? document().url().string() : m_attributes.action()); local
525 if (document().frame() && MixedContentChecker::isMixedContent(document().securityOrigin(), actionURL))
526 document().frame()->loader().mixedContentChecker()->canSubmitToInsecureForm(document().securityOrigin(), actionURL);

Completed in 116 milliseconds