Changeset 30547 in webkit


Ignore:
Timestamp:
Feb 23, 2008, 11:55:40 PM (17 years ago)
Author:
Darin Adler
Message:

Reviewed by Sam.

  • html/HTMLFormElement.cpp: (WebCore::HTMLFormElement::submit): Restore the old logic, with its unpleasant trip through String do to the replace operation. It's inefficient, but there's no real reason to worry about the efficiency of mailto forms, since that feature is nearly obsolete.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r30546 r30547  
     12008-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
    1142008-02-23  Darin Adler  <darin@apple.com>
    215
  • trunk/WebCore/html/HTMLFormElement.cpp

    r30536 r30547  
    488488                Vector<char> bodyData;
    489489                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());
    492492            }
    493493            frame->loader()->submitForm("POST", m_url, data, m_target, enctype(), String(), event);
Note: See TracChangeset for help on using the changeset viewer.