| Index: Source/core/html/FormDataList.cpp
|
| diff --git a/Source/core/html/FormDataList.cpp b/Source/core/html/FormDataList.cpp
|
| index f490596b443e8bfa106df38d8ac4e0e81d1f32cd..b7e0834fcffb3ab695b105cdc71e19980b81c774 100644
|
| --- a/Source/core/html/FormDataList.cpp
|
| +++ b/Source/core/html/FormDataList.cpp
|
| @@ -115,7 +115,7 @@ void FormDataList::appendKeyValuePairItemsTo(FormData* formData, const WTF::Text
|
| // Append body
|
| formData->appendData(header.data(), header.size());
|
| if (value.blob()) {
|
| - if (value.blob()->isFile()) {
|
| + if (value.blob()->isOnFilesystem()) {
|
| File* file = toFile(value.blob());
|
| // Do not add the file if the path is empty.
|
| if (!file->path().isEmpty())
|
|
|