| Index: Source/core/html/TextFieldInputType.cpp
|
| diff --git a/Source/core/html/TextFieldInputType.cpp b/Source/core/html/TextFieldInputType.cpp
|
| index 92a46762785e8819748345394f986f133468b2b1..579c0deb7999082d2709785145841130e6ccc7a6 100644
|
| --- a/Source/core/html/TextFieldInputType.cpp
|
| +++ b/Source/core/html/TextFieldInputType.cpp
|
| @@ -201,9 +201,9 @@ bool TextFieldInputType::shouldSubmitImplicitly(Event* event)
|
| return (event->type() == eventNames().textInputEvent && event->hasInterface(eventNames().interfaceForTextEvent) && static_cast<TextEvent*>(event)->data() == "\n") || InputType::shouldSubmitImplicitly(event);
|
| }
|
|
|
| -RenderObject* TextFieldInputType::createRenderer(RenderArena* arena, RenderStyle*) const
|
| +RenderObject* TextFieldInputType::createRenderer(RenderStyle*) const
|
| {
|
| - return new (arena) RenderTextControlSingleLine(element());
|
| + return new RenderTextControlSingleLine(element());
|
| }
|
|
|
| bool TextFieldInputType::needsContainer() const
|
|
|