[Webkit-unassigned] [Bug 89628] New: Make FormControlState capable to store multiple values

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jun 20 18:44:56 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=89628

           Summary: Make FormControlState capable to store multiple values
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Forms
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: tkent at chromium.org
                CC: kinuko at chromium.org, marja at chromium.org
            Blocks: 23346


FileInputType::saveFormControlState:

    // FIXME: FormControlState should be capable to have multiple strings and we
    // should stop the following ugly string concatenation.
    StringBuilder result;
    unsigned numFiles = m_fileList->length();
    for (unsigned i = 0; i < numFiles; ++i) {
        result.append(m_fileList->item(i)->path());
        result.append('\1');
        result.append(m_fileList->item(i)->name());
        result.append('\0');
    }

We resolve this FIXME in this bug.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list