| Index: Source/core/html/HTMLTextAreaElement.cpp
|
| diff --git a/Source/core/html/HTMLTextAreaElement.cpp b/Source/core/html/HTMLTextAreaElement.cpp
|
| index 51cd2bef99c9d87a9a535d8ad56860274fb9d125..55699ab0569ba38f9dee9564e64c4991ddc3c26a 100644
|
| --- a/Source/core/html/HTMLTextAreaElement.cpp
|
| +++ b/Source/core/html/HTMLTextAreaElement.cpp
|
| @@ -100,9 +100,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
|
|
|