Index: Source/core/html/FormDataList.cpp |
diff --git a/Source/core/html/FormDataList.cpp b/Source/core/html/FormDataList.cpp |
index 6052aa94051d3139465acea9d77dc0f2c3e3359a..f20cc226272e813168a951dc316341cd93b7f1ee 100644 |
--- a/Source/core/html/FormDataList.cpp |
+++ b/Source/core/html/FormDataList.cpp |
@@ -93,13 +93,13 @@ void FormDataList::appendKeyValuePairItemsTo(EncodedFormData* formData, const WT |
// For file blob, use the filename (or relative path if it is present) as the name. |
name = file->webkitRelativePath().isEmpty() ? file->name() : file->webkitRelativePath(); |
- // If a filename is passed in DOMFormData.append(), use it |
+ // If a filename is passed in FormData.append(), use it |
// instead of the file blob's name. |
if (!item.filename().isNull()) |
name = item.filename(); |
} else { |
// For non-file blob, use the filename if it is passed in |
- // DOMFormData.append(). |
+ // FormData.append(). |
if (!item.filename().isNull()) |
name = item.filename(); |
else |