Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(736)

Unified Diff: Source/core/html/HTMLInputElement.cpp

Issue 267713006: node.cloneNode() should clone the value of file upload elements (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/html/HTMLInputElement.cpp
diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
index 7952c58f83be743b8803e9610ed433ab59f45558..e0439b5f52da059171a186e27f804133c37b5c4c 100644
--- a/Source/core/html/HTMLInputElement.cpp
+++ b/Source/core/html/HTMLInputElement.cpp
@@ -909,6 +909,8 @@ void HTMLInputElement::copyNonAttributePropertiesFromElement(const Element& sour
setChecked(sourceElement.m_isChecked);
m_reflectsCheckedAttribute = sourceElement.m_reflectsCheckedAttribute;
m_isIndeterminate = sourceElement.m_isIndeterminate;
+ if (isFileUpload())
+ setFiles(sourceElement.files());
Inactive 2014/05/06 13:33:58 Isn't it a problem that we are not actually clonin
gnana 2014/05/07 12:39:46 yes. I have modified to clone filelist. Done.
HTMLTextFormControlElement::copyNonAttributePropertiesFromElement(source);
@@ -1319,7 +1321,7 @@ KURL HTMLInputElement::src() const
return document().completeURL(fastGetAttribute(srcAttr));
}
-FileList* HTMLInputElement::files()
+FileList* HTMLInputElement::files() const
{
return m_inputType->files();
}

Powered by Google App Engine
This is Rietveld 408576698