Changeset 30547 in webkit
- Timestamp:
- Feb 23, 2008, 11:55:40 PM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r30546 r30547 1 2008-02-23 Darin Adler <darin@apple.com> 2 3 Reviewed by Sam. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=17508 6 REGRESSION (r30535): mailto regression tests failing 7 8 * html/HTMLFormElement.cpp: 9 (WebCore::HTMLFormElement::submit): Restore the old logic, with its unpleasant 10 trip through String do to the replace operation. It's inefficient, but there's 11 no real reason to worry about the efficiency of mailto forms, since that feature 12 is nearly obsolete. 13 1 14 2008-02-23 Darin Adler <darin@apple.com> 2 15 -
trunk/WebCore/html/HTMLFormElement.cpp
r30536 r30547 488 488 Vector<char> bodyData; 489 489 appendString(bodyData, "body="); 490 appendEncodedString(bodyData, body. replace('+', ' ').utf8());491 data = FormData::create( bodyData);490 appendEncodedString(bodyData, body.utf8()); 491 data = FormData::create(String(bodyData.data(), bodyData.size()).replace('+', "%20").latin1()); 492 492 } 493 493 frame->loader()->submitForm("POST", m_url, data, m_target, enctype(), String(), event);
Note:
See TracChangeset
for help on using the changeset viewer.