From a94275402997c11dd2e778633dacf4b7e630a35d Mon Sep 17 00:00:00 2001 From: Ben Murdoch Date: Fri, 22 Oct 2010 13:02:20 +0100 Subject: Merge WebKit at r70209: Initial merge by Git Change-Id: Id23a68efa36e9d1126bcce0b137872db00892c8e --- WebCore/loader/FormSubmission.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'WebCore/loader/FormSubmission.cpp') diff --git a/WebCore/loader/FormSubmission.cpp b/WebCore/loader/FormSubmission.cpp index 98a545e..f3f19d2 100644 --- a/WebCore/loader/FormSubmission.cpp +++ b/WebCore/loader/FormSubmission.cpp @@ -31,7 +31,6 @@ #include "config.h" #include "FormSubmission.h" -#include "CSSHelper.h" #include "DOMFormData.h" #include "Document.h" #include "Event.h" @@ -45,6 +44,7 @@ #include "HTMLFormElement.h" #include "HTMLInputElement.h" #include "HTMLNames.h" +#include "HTMLParserIdioms.h" #include "TextEncoding.h" #include #include @@ -85,7 +85,7 @@ static void appendMailtoPostFormDataToURL(KURL& url, const FormData& data, const void FormSubmission::Attributes::parseAction(const String& action) { // FIXME: Can we parse into a KURL? - m_action = deprecatedParseURL(action); + m_action = stripLeadingAndTrailingHTMLSpaces(action); } void FormSubmission::Attributes::parseEncodingType(const String& type) -- cgit v1.1