| Index: Source/core/html/HTMLTextAreaElement.cpp
|
| diff --git a/Source/core/html/HTMLTextAreaElement.cpp b/Source/core/html/HTMLTextAreaElement.cpp
|
| index 56deba03b1fd142a3164ce1c9e3e8d67b387f584..a2aa3218e3b1313c276df2aa8dcdb00622253942 100644
|
| --- a/Source/core/html/HTMLTextAreaElement.cpp
|
| +++ b/Source/core/html/HTMLTextAreaElement.cpp
|
| @@ -95,9 +95,9 @@ PassRefPtr<HTMLTextAreaElement> HTMLTextAreaElement::create(const QualifiedName&
|
| return textArea.release();
|
| }
|
|
|
| -void HTMLTextAreaElement::didAddUserAgentShadowRoot(ShadowRoot* root)
|
| +void HTMLTextAreaElement::didAddUserAgentShadowRoot(ShadowRoot& root)
|
| {
|
| - root->appendChild(TextControlInnerTextElement::create(document()));
|
| + root.appendChild(TextControlInnerTextElement::create(document()));
|
| }
|
|
|
| const AtomicString& HTMLTextAreaElement::formControlType() const
|
|
|