| Index: Source/core/html/HTMLTextAreaElement.cpp
|
| diff --git a/Source/core/html/HTMLTextAreaElement.cpp b/Source/core/html/HTMLTextAreaElement.cpp
|
| index 8c6954c4eb84d1864d81912f8b070804683107fc..dc323de471401d77d912377410f1dba7e1e5d117 100644
|
| --- a/Source/core/html/HTMLTextAreaElement.cpp
|
| +++ b/Source/core/html/HTMLTextAreaElement.cpp
|
| @@ -639,4 +639,11 @@ const AtomicString& HTMLTextAreaElement::defaultAutocapitalize() const
|
| return sentences;
|
| }
|
|
|
| +void HTMLTextAreaElement::copyNonAttributePropertiesFromElement(const Element& source)
|
| +{
|
| + const HTMLTextAreaElement& sourceElement = static_cast<const HTMLTextAreaElement&>(source);
|
| + setValueCommon(sourceElement.m_value, DispatchNoEvent, SetSeletion);
|
| + HTMLTextFormControlElement::copyNonAttributePropertiesFromElement(source);
|
| +}
|
| +
|
| } // namespace blink
|
|
|