Changeset 86332 in webkit


Ignore:
Timestamp:
May 12, 2011 6:30:02 AM (13 years ago)
Author:
Nikolas Zimmermann
Message:

2011-05-12 Nikolas Zimmermann <nzimmermann@rim.com>

Not reviewed.

String operator+ reallocates unnecessary when concatting > 2 strings
https://bugs.webkit.org/show_bug.cgi?id=58420

Fix fast/forms/input-image-submit.html regression, seens on the bots - by removing a last-minute typo: s/!!/!/

  • html/ImageInputType.cpp: (WebCore::ImageInputType::appendFormData):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r86331 r86332  
     12011-05-12  Nikolas Zimmermann  <nzimmermann@rim.com>
     2
     3        Not reviewed.
     4
     5        String operator+ reallocates unnecessary when concatting > 2 strings
     6        https://bugs.webkit.org/show_bug.cgi?id=58420
     7
     8        Fix fast/forms/input-image-submit.html regression, seens on the bots - by removing a last-minute typo: s/!!/!/
     9
     10        * html/ImageInputType.cpp:
     11        (WebCore::ImageInputType::appendFormData):
     12
    1132011-05-12  Rob Buis  <rwlbuis@gmail.com>
    214
  • trunk/Source/WebCore/html/ImageInputType.cpp

    r86330 r86332  
    6969    encoding.appendData(name + dotYString, m_clickLocation.y());
    7070
    71     if (!!element()->value().isEmpty())
     71    if (!element()->value().isEmpty())
    7272        encoding.appendData(name, element()->value());
    7373    return true;
Note: See TracChangeset for help on using the changeset viewer.