RESOLVED FIXED 69885
Support passing optional filename when FormData.append() is used to append a blob
https://bugs.webkit.org/show_bug.cgi?id=69885
Summary Support passing optional filename when FormData.append() is used to append a ...
Jian Li
Reported 2011-10-11 17:15:43 PDT
We need to support passing optional filename when FormData.append() is used to append a blob, per the latest XHR 2 spec: http://dev.w3.org/2006/webapi/XMLHttpRequest-2/#dom-formdata-append When the append(name, value, filename) method is invoked, the user agent must create a new entry with the following parameters set and append it to the end of the collection the FormData object represents: Set its name to name. Set its value to value. Set its type to "text" if value is a string and "file" if it is a Blob. If its type is "file" set its filename to "blob". If its type is "file" and value is a File whose name attribute is not the empty string, set entry's filename to the attribute's value. If the filename parameter is not omitted set entry's filename to filename.
Attachments
Proposed Patch (14.59 KB, patch)
2011-10-11 17:20 PDT, Jian Li
jianli: commit-queue-
Proposed Patch (14.65 KB, patch)
2011-10-11 17:26 PDT, Jian Li
levin: review+
jianli: commit-queue-
Jian Li
Comment 1 2011-10-11 17:20:55 PDT
Created attachment 110614 [details] Proposed Patch
WebKit Review Bot
Comment 2 2011-10-11 17:24:06 PDT
Attachment 110614 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'LayoutTests/ChangeLog', u'LayoutTests/http..." exit_code: 1 LayoutTests/ChangeLog:1: ChangeLog entry has no bug number [changelog/bugnumber] [5] Total errors found: 1 in 13 files If any of these errors are false positives, please file a bug against check-webkit-style.
Jian Li
Comment 3 2011-10-11 17:26:35 PDT
Created attachment 110616 [details] Proposed Patch
David Levin
Comment 4 2011-10-12 09:28:31 PDT
Comment on attachment 110616 [details] Proposed Patch View in context: https://bugs.webkit.org/attachment.cgi?id=110616&action=review Please consider adding that test. > Source/WebCore/bindings/v8/custom/V8DOMFormDataCustom.cpp:78 > + filename = toWebCoreStringWithNullCheck(args[2]); It would be nice to add a test with null as the last arg. It looks like you added handling throughout the code for this but it seems untested.
Jian Li
Comment 5 2011-10-12 10:45:05 PDT
New test case added to cover null argument case. Committed as http://trac.webkit.org/changeset/97274.
Note You need to log in before you can comment on or make changes to this bug.